aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/full_bisect_test/make_sources_bad.sh
diff options
context:
space:
mode:
authorZhizhou Yang <zhizhouy@google.com>2017-07-22 01:03:02 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-07-22 01:03:02 +0000
commit6c551e0d526de7de9d86516614d645cba6f975a6 (patch)
treebf139ee25415cecde142e95791edba3803b2452a /binary_search_tool/full_bisect_test/make_sources_bad.sh
parent3690e025de8daaed03c4acb02d2b054e5c4c0dd5 (diff)
parent18caef1edd870ff3850fe2c417bbcec00c2ba7e0 (diff)
downloadtoolchain-utils-6c551e0d526de7de9d86516614d645cba6f975a6.tar.gz
Merge branch 'aosp/mirror-chromium-master' into update_utils am: 4307f4735e
am: 18caef1edd Change-Id: Ic12e19d78d60a8e444592bfa8783e234456c0051
Diffstat (limited to 'binary_search_tool/full_bisect_test/make_sources_bad.sh')
-rwxr-xr-xbinary_search_tool/full_bisect_test/make_sources_bad.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/binary_search_tool/full_bisect_test/make_sources_bad.sh b/binary_search_tool/full_bisect_test/make_sources_bad.sh
new file mode 100755
index 00000000..507e8ca8
--- /dev/null
+++ b/binary_search_tool/full_bisect_test/make_sources_bad.sh
@@ -0,0 +1,15 @@
+#!/bin/bash -u
+#
+# There are two versions (good & bad) of inorder_norecurse.c and
+# preorder_norecurse.c. This script makes sure the bad versions
+# are copied into the .c files that will be built and copied into
+# the bad-objects directory, for the bisection test. It is called
+# from run-test-nowrapper.sh.
+#
+
+pushd full_bisect_test
+
+cp inorder_norecurse.c.bad inorder_norecurse.c
+cp preorder_norecurse.c.bad preorder_norecurse.c
+
+popd