summaryrefslogtreecommitdiff
path: root/tests/images/gen-testcases.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/images/gen-testcases.sh')
-rwxr-xr-xtests/images/gen-testcases.sh38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/images/gen-testcases.sh b/tests/images/gen-testcases.sh
new file mode 100755
index 0000000..b9f41ab
--- /dev/null
+++ b/tests/images/gen-testcases.sh
@@ -0,0 +1,38 @@
+#!/bin/bash -e
+
+
+# Copyright (C) 2011 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+CYAN='\033[1;36m'
+RESET='\033[m'
+
+echo -e "${CYAN}Generating bitcode ...${RESET}"
+clang -emit-llvm -std=c89 -Wall -c test.c -o test.bc
+clang -emit-llvm -std=c89 -Wall -c simple-test.c -o simple-test.bc
+clang -emit-llvm -std=c89 -Wall -c rodata-test.c -o rodata-test.bc
+
+function gen_test_cases {
+ echo -e "${CYAN}Generating for $1 ...${RESET}"
+ llc -filetype=obj -mtriple $2 $3 test.bc -o test-$1.o
+ llc -filetype=obj -mtriple $2 $3 simple-test.bc -o simple-test-$1.o
+ llc -filetype=obj -mtriple $2 $3 rodata-test.bc -o rodata-test-$1.o
+}
+
+gen_test_cases arm armv7-none-linux-gnueabi
+gen_test_cases tegra2 armv7-none-linux-gnueabi '-mcpu=cortex-a9 -mattr=+vfp3'
+gen_test_cases x86_32 i686-none-linux
+gen_test_cases x86_64 x86_64-none-linux
+gen_test_cases mipsel mipsel-none-linux-gnueabi