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

Unified Diff: tests/threads/nacl.scons

Issue 951583004: Implement pthread_rwlock functions for NaCl newlib (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 9 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 | « src/untrusted/pthread/pthread_types.h ('k') | tests/threads/rwlock_test.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/threads/nacl.scons
diff --git a/tests/threads/nacl.scons b/tests/threads/nacl.scons
index bc28b8b91f4977eb17974633b944b3beb7a167a6..995d5c105308a0d7d0872b58b2e9fea47c829dd3 100644
--- a/tests/threads/nacl.scons
+++ b/tests/threads/nacl.scons
@@ -150,6 +150,19 @@ env.AddNodeToTestSuite(node, ['small_tests'], 'run_mutex_timedlock_test',
is_broken=env.IsRunningUnderValgrind() or
env.UsingEmulator())
+rwlock_test_nexe = env.ComponentProgram(
+ 'rwlock_test',
+ ['rwlock_test.c'],
+ EXTRA_LIBS=['${PTHREAD_LIBS}', '${NONIRT_LIBS}'])
+
+node = env.CommandSelLdrTestNacl(
+ 'rwlock_test.out',
+ rwlock_test_nexe
+ )
+env.AddNodeToTestSuite(node, ['small_tests'], 'run_rwlock_test',
+ is_broken=env.IsRunningUnderValgrind() or
+ env.UsingEmulator())
+
thread_stack_test_nexe = env.ComponentProgram('thread_stack_test',
'thread_stack_test.c',
EXTRA_LIBS=['${PTHREAD_LIBS}',
« no previous file with comments | « src/untrusted/pthread/pthread_types.h ('k') | tests/threads/rwlock_test.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698