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

Unified Diff: ports/devil/build.sh

Issue 1556933002: Remove redundant pnacl translations (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Created 4 years, 12 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/devil/build.sh
diff --git a/ports/devil/build.sh b/ports/devil/build.sh
index b1049c9fe07fa2991e8db2a8956cc18d36bb17b2..51ce2e7e4331f80f750fc0bb2ae66cbed377b9dc 100644
--- a/ports/devil/build.sh
+++ b/ports/devil/build.sh
@@ -11,20 +11,13 @@ TestStep() {
if [ ${NACL_ARCH} == "pnacl" ]; then
# Run once for each architecture.
- local pexe=test/testil
- local script=${pexe}.sh
- TranslateAndWriteLauncherScript ${pexe} x86-32 ${pexe}.x86-32.nexe ${script}
+ WriteLauncherScript test/testil testil.x86-32.nexe
(cd test && make check)
- TranslateAndWriteLauncherScript ${pexe} x86-64 ${pexe}.x86-64.nexe ${script}
+ WriteLauncherScript test/testil testil.x86-64.nexe
(cd test && make check)
else
- local nexe=test/testil
- local script=${nexe}.sh
-
- WriteLauncherScript ${script} ${nexe}
-
(cd test && make check)
fi
}

Powered by Google App Engine
This is Rietveld 408576698