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

Unified Diff: tests/syscalls/nacl.scons

Issue 1235633004: DON'T USE THIS -- Providing some missing POSIX File syscalls. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 5 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/nacl/syscall_bindings_trampoline.h ('k') | tests/syscalls/syscalls.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/syscalls/nacl.scons
diff --git a/tests/syscalls/nacl.scons b/tests/syscalls/nacl.scons
index 2d3631c1014c1c1df5847c108353248dd2ac5569..a1b917053caa0a5a7382c5b74aa5a12707aabd9f 100644
--- a/tests/syscalls/nacl.scons
+++ b/tests/syscalls/nacl.scons
@@ -44,7 +44,9 @@ Default(inputs)
node = env.CommandSelLdrTestNacl(
'syscalls_test.out',
syscalls_nexe,
- args=[env.File('file_ok_rdwr.txt')],
+ # Arg 1) Test file name
+ # arg 2) 'w' if running on windows, else ' '.
+ args=[env.File('file_ok_rdwr.txt'), 'w' if env.Bit('host_windows') else 'p'],
sel_ldr_flags=['-a'])
env.AddNodeToTestSuite(node, ['small_tests'], 'run_syscall_test')
« no previous file with comments | « src/untrusted/nacl/syscall_bindings_trampoline.h ('k') | tests/syscalls/syscalls.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698