Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(625)

Unified Diff: tests/unittests/trusted/asan/build.scons

Issue 1328423003: Don't skip asan tests with atypical exit status. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « SConstruct ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/unittests/trusted/asan/build.scons
diff --git a/tests/unittests/trusted/asan/build.scons b/tests/unittests/trusted/asan/build.scons
index a9d945af83cbbef8c677f2ae8bec18881f79362d..f8ae58b1c00c190043ba79df421b60bdb7ce4c38 100644
--- a/tests/unittests/trusted/asan/build.scons
+++ b/tests/unittests/trusted/asan/build.scons
@@ -10,15 +10,9 @@ if not env.Bit('asan'):
asan_test_exe = env.ComponentProgram('asan_test', 'asan_test.c')
-if env.Bit('host_mac'):
- expected_exit_status = 'trusted_sigabrt'
-else:
- expected_exit_status = '1'
-
-
node = env.CommandTest(
'asan_test.out',
command=[asan_test_exe],
- exit_status=expected_exit_status,
+ exit_status='1',
)
env.AddNodeToTestSuite(node, ['small_tests'], 'run_asan_test')
« no previous file with comments | « SConstruct ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698