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

Unified Diff: ports/devenv/tests/devenv_small_test.js

Issue 1804293003: Add support for new pnacl native toolchain driver (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Rename exception flag Created 4 years, 8 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
Index: ports/devenv/tests/devenv_small_test.js
diff --git a/ports/devenv/tests/devenv_small_test.js b/ports/devenv/tests/devenv_small_test.js
index 55ba3f9b1eb4fe132fd08e13cc904038ddcc17d8..93694020fe14ca6672f690810eb60361c7a065d8 100644
--- a/ports/devenv/tests/devenv_small_test.js
+++ b/ports/devenv/tests/devenv_small_test.js
@@ -77,8 +77,9 @@ TEST_F(DevEnvTest, 'testCTests', function() {
}).then(function() {
return self.checkCommand('unzip devenv_small_test.zip', 0);
}).then(function() {
+ var NACL_BOOT_ARCH = self.params["NACL_BOOT_ARCH"]
bradnelson 2016/05/02 17:38:58 semicolon.
Ankur Mittal 2016/05/02 20:22:14 Done.
return self.checkCommand(
'LD_LIBRARY_PATH=${PWD}/${PACKAGE_LIB_DIR}:$LD_LIBRARY_PATH ' +
- './devenv_small_test_${NACL_BOOT_ARCH}', 0);
+ './devenv_small_test_' + NACL_BOOT_ARCH, 0);
});
});

Powered by Google App Engine
This is Rietveld 408576698