summaryrefslogtreecommitdiff
path: root/lib/tests
diff options
context:
space:
mode:
authorArkadiusz Hiler <arkadiusz.hiler@intel.com>2020-06-16 15:40:30 +0300
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2020-06-22 13:31:32 +0300
commitd2e4cb0cf92c7e3f3d8e88841ed9160e97aebbe4 (patch)
tree8fd2a623e0553a92aa658ed302513cf0e2fa0040 /lib/tests
parentb787a2f2a0a56e2009f7b8252d93b3a8694f0b53 (diff)
lib/core: Handle asserts in threads
Since IGT is using magic control blocks (igt_subtest et al.) asserts jump out the them using longjmp() causing a bunch of confusing messages and occasionally crashing the whole process. This is not the behavior we want :-) With this patch: 1. simple_main, dynamic and subtest each clears the thread failure state at the start 2. each of those blocks also asserts no thread failures at the end 3. igt_assert() in non-main thread prints out the error + stacktrace and marks that we have failed thread Issue: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/55 Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com>
Diffstat (limited to 'lib/tests')
-rw-r--r--lib/tests/igt_tests_common.h22
-rw-r--r--lib/tests/igt_thread.c194
-rw-r--r--lib/tests/meson.build1
3 files changed, 217 insertions, 0 deletions
diff --git a/lib/tests/igt_tests_common.h b/lib/tests/igt_tests_common.h
index fa8ad920..058f6265 100644
--- a/lib/tests/igt_tests_common.h
+++ b/lib/tests/igt_tests_common.h
@@ -30,6 +30,7 @@
#include <errno.h>
#include <sys/stat.h>
#include <fcntl.h>
+#include <regex.h>
/*
* We need to hide assert from the cocci igt test refactor spatch.
@@ -161,4 +162,25 @@ static inline void read_whole_pipe(int fd, char *buf, size_t buflen)
offset += readlen;
}
}
+
+static inline bool matches(char *str, const char *regex)
+{
+ int ret;
+ regex_t reg;
+
+ ret = regcomp(&reg, regex, REG_EXTENDED | REG_NEWLINE);
+
+ if (ret == 0)
+ ret = regexec(&reg, str, 0, NULL, 0);
+
+ if (0 != ret && REG_NOMATCH != ret) {
+ char err[256];
+ regerror(ret, &reg, err, sizeof(err));
+ printf("%s\n", err);
+ abort();
+ }
+
+ regfree(&reg);
+ return !ret;
+}
#endif
diff --git a/lib/tests/igt_thread.c b/lib/tests/igt_thread.c
new file mode 100644
index 00000000..7185dd5d
--- /dev/null
+++ b/lib/tests/igt_thread.c
@@ -0,0 +1,194 @@
+/*
+ * Copyright © 2020 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ *
+ */
+
+#include <pthread.h>
+
+#include "drmtest.h"
+#include "igt_core.h"
+#include "igt_tests_common.h"
+
+char prog[] = "igt_thread";
+char *fake_argv[] = { prog };
+int fake_argc = ARRAY_SIZE(fake_argv);
+
+static void *success_thread(void *data)
+{
+ return NULL;
+}
+
+static void *failure_thread(void *data)
+{
+ igt_assert(false);
+ return NULL;
+}
+
+static void one_subtest_fail(void) {
+ igt_subtest_init(fake_argc, fake_argv);
+
+ igt_subtest("subtest-a") {
+ pthread_t thread;
+ pthread_create(&thread, 0, failure_thread, NULL);
+ pthread_join(thread, NULL);
+ }
+
+ igt_subtest("subtest-b") {
+ pthread_t thread;
+ pthread_create(&thread, 0, success_thread, NULL);
+ pthread_join(thread, NULL);
+ }
+
+ igt_exit();
+}
+
+static void one_dynamic_fail(void) {
+ igt_subtest_init(fake_argc, fake_argv);
+
+ igt_subtest_with_dynamic("dynamic-container") {
+ igt_dynamic("dynamic-a") {
+ pthread_t thread;
+ pthread_create(&thread, 0, failure_thread, NULL);
+ pthread_join(thread, NULL);
+ }
+
+ igt_dynamic("dynamic-b") {
+ pthread_t thread;
+ pthread_create(&thread, 0, success_thread, NULL);
+ pthread_join(thread, NULL);
+ }
+ }
+
+ igt_exit();
+}
+
+static void simple_success(void) {
+ pthread_t thread;
+
+ igt_simple_init(fake_argc, fake_argv);
+
+ pthread_create(&thread, 0, success_thread, NULL);
+ pthread_join(thread, NULL);
+
+ igt_exit();
+}
+
+static void simple_failure(void) {
+ pthread_t thread;
+
+ igt_simple_init(fake_argc, fake_argv);
+
+ pthread_create(&thread, 0, failure_thread, NULL);
+ pthread_join(thread, NULL);
+
+ igt_exit();
+}
+
+int main(int argc, char **argv)
+{
+ int status;
+ int outfd;
+ pid_t pid;
+
+ /* failing should be limited just to a single subtest */ {
+ static char out[4096];
+
+ pid = do_fork_bg_with_pipes(one_subtest_fail, &outfd, NULL);
+
+ read_whole_pipe(outfd, out, sizeof(out));
+
+ internal_assert(safe_wait(pid, &status) != -1);
+ internal_assert_wexited(status, IGT_EXIT_FAILURE);
+
+ internal_assert(matches(out, "\\[thread:.*\\] Stack trace"));
+ internal_assert(strstr(out, "Subtest subtest-a: FAIL"));
+ internal_assert(strstr(out, "Subtest subtest-b: SUCCESS"));
+
+ close(outfd);
+ }
+
+ /* failing should be limited just to a dynamic subsubtest */ {
+ static char out[4096];
+
+ pid = do_fork_bg_with_pipes(one_dynamic_fail, &outfd, NULL);
+
+ read_whole_pipe(outfd, out, sizeof(out));
+
+ internal_assert(safe_wait(pid, &status) != -1);
+ internal_assert_wexited(status, IGT_EXIT_FAILURE);
+
+ internal_assert(matches(out, "\\[thread:.*\\] Stack trace"));
+ internal_assert(strstr(out, "Dynamic subtest dynamic-a: FAIL"));
+ internal_assert(strstr(out, "Dynamic subtest dynamic-b: SUCCESS"));
+
+ close(outfd);
+ }
+
+ /* success in a simple test */ {
+ static char out[4096];
+
+ pid = do_fork_bg_with_pipes(simple_success, &outfd, NULL);
+
+ read_whole_pipe(outfd, out, sizeof(out));
+
+ internal_assert(safe_wait(pid, &status) != -1);
+ internal_assert_wexited(status, IGT_EXIT_SUCCESS);
+
+
+ internal_assert(matches(out, "^SUCCESS"));
+
+ close(outfd);
+ }
+
+ /* success in a simple test */ {
+ static char out[4096];
+
+ pid = do_fork_bg_with_pipes(simple_success, &outfd, NULL);
+
+ read_whole_pipe(outfd, out, sizeof(out));
+
+ internal_assert(safe_wait(pid, &status) != -1);
+ internal_assert_wexited(status, IGT_EXIT_SUCCESS);
+
+ internal_assert(matches(out, "^SUCCESS"));
+
+ close(outfd);
+ }
+
+ /* failure in a simple test */ {
+ static char out[4096];
+
+ pid = do_fork_bg_with_pipes(simple_failure, &outfd, NULL);
+
+ read_whole_pipe(outfd, out, sizeof(out));
+
+ internal_assert(safe_wait(pid, &status) != -1);
+ internal_assert_wexited(status, IGT_EXIT_FAILURE);
+
+ internal_assert(matches(out, "\\[thread:.*\\] Stack trace"));
+ internal_assert(matches(out, "^FAIL"));
+
+ close(outfd);
+ }
+
+ return 0;
+}
diff --git a/lib/tests/meson.build b/lib/tests/meson.build
index 47ef303a..9cf5ff47 100644
--- a/lib/tests/meson.build
+++ b/lib/tests/meson.build
@@ -18,6 +18,7 @@ lib_tests = [
'igt_simulation',
'igt_stats',
'igt_subtest_group',
+ 'igt_thread',
'i915_perf_data_alignment',
]