diff options
Diffstat (limited to 'tools/testing')
-rw-r--r-- | tools/testing/ktest/examples/crosstests.conf | 6 | ||||
-rw-r--r-- | tools/testing/selftests/timers/posix_timers.c | 2 |
2 files changed, 1 insertions, 7 deletions
diff --git a/tools/testing/ktest/examples/crosstests.conf b/tools/testing/ktest/examples/crosstests.conf index 46736604c26c..a1203148dfa1 100644 --- a/tools/testing/ktest/examples/crosstests.conf +++ b/tools/testing/ktest/examples/crosstests.conf | |||
@@ -133,12 +133,6 @@ CROSS = frv-linux | |||
133 | ARCH = frv | 133 | ARCH = frv |
134 | GCC_VER = 4.5.1 | 134 | GCC_VER = 4.5.1 |
135 | 135 | ||
136 | # h8300 - failed make defconfig?? | ||
137 | TEST_START IF ${RUN} == h8300 || ${DO_FAILED} | ||
138 | CROSS = h8300-elf | ||
139 | ARCH = h8300 | ||
140 | GCC_VER = 4.5.1 | ||
141 | |||
142 | # m68k fails with error? | 136 | # m68k fails with error? |
143 | TEST_START IF ${RUN} == m68k || ${DO_DEFAULT} | 137 | TEST_START IF ${RUN} == m68k || ${DO_DEFAULT} |
144 | CROSS = m68k-linux | 138 | CROSS = m68k-linux |
diff --git a/tools/testing/selftests/timers/posix_timers.c b/tools/testing/selftests/timers/posix_timers.c index 4fa655d68a81..41bd85559d4b 100644 --- a/tools/testing/selftests/timers/posix_timers.c +++ b/tools/testing/selftests/timers/posix_timers.c | |||
@@ -151,7 +151,7 @@ static int check_timer_create(int which) | |||
151 | fflush(stdout); | 151 | fflush(stdout); |
152 | 152 | ||
153 | done = 0; | 153 | done = 0; |
154 | timer_create(which, NULL, &id); | 154 | err = timer_create(which, NULL, &id); |
155 | if (err < 0) { | 155 | if (err < 0) { |
156 | perror("Can't create timer\n"); | 156 | perror("Can't create timer\n"); |
157 | return -1; | 157 | return -1; |