-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest.sh
executable file
·137 lines (104 loc) · 7.96 KB
/
test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/bin/sh
PATH=$PATH:/opt/compiler-explorer/cmake/bin
export CXX=/opt/compiler-explorer/gcc-11.2.0/bin/g++
export CC=/opt/compiler-explorer/gcc-11.2.0/bin/gcc
export CXXFLAGS="-I$PWD/ctre/include"
# export LD_LIBRARY_PATH=/opt/compiler-explorer/gcc-11.2.0/lib64
# export CXX=/opt/compiler-explorer/clang-12.0.0/bin/clang++
# export CC=/opt/compiler-explorer/clang-12.0.0/bin/clang
# export CXXFLAGS="--gcc-toolchain=/opt/compiler-explorer/gcc-10.3.0 -I$PWD/ctre/include -O3 -flto"
if test -f "ctre/include/ctre.hpp"; then
echo Updating ctre
cd ctre
git pull
cd ..
else
echo Cloning ctre
git clone https://github.com/hanickadot/compile-time-regular-expressions ctre
fi
/opt/compiler-explorer/clang-trunk/bin/clang-format -i src/*/*.cpp
/opt/compiler-explorer/clang-trunk/bin/clang-format -i src/*/*.hpp
BUILDTYPE=Release
mkdir -p build
cd build
echo cmake -GNinja -DCMAKE_BUILD_TYPE=$BUILDTYPE ..
cmake -GNinja -DCMAKE_BUILD_TYPE=$BUILDTYPE ..
if [ $? -ne 0 ]; then
exit $?
fi
# /opt/compiler-explorer/clang-trunk/bin/clang-tidy --extra-arg=-std=c++20 ../src/assembly/*.cpp
# if [ $? -ne 0 ]; then
# exit $?
# fi
echo cmake --build . --target test
cmake --build . --target test
if [ $? -ne 0 ]; then
exit $?
fi
patchelf --set-rpath /opt/compiler-explorer/gcc-11.2.0/lib64 bin/test
bin/test
if [ $? -ne 0 ]; then
exit $?
fi
echo cmake --build . --target asm-parser
cmake --build . --target asm-parser
if [ $? -ne 0 ]; then
exit $?
fi
patchelf --set-rpath /opt/compiler-explorer/gcc-11.2.0/lib64 bin/asm-parser
cd ..
# /usr/bin/time --verbose build/bin/asm-parser -comment_only -directives -unused_labels /opt/compiler-explorer/ce/test/filters-cases/bug-995.asm > bla.json
# echo bintest-1
# build/bin/asm-parser -binary /opt/compiler-explorer/ce/test/filters-cases/bintest-1.asm > /opt/compiler-explorer/ce/test/filters-cases/bintest-1.asm.binary.directives.labels.comments.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/bintest-1.asm.binary.directives.labels.comments.json
# echo bintest-2
# build/bin/asm-parser -binary /opt/compiler-explorer/ce/test/filters-cases/bintest-2.asm > /opt/compiler-explorer/ce/test/filters-cases/bintest-2.asm.binary.directives.labels.comments.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/bintest-2.asm.binary.directives.labels.comments.json
# echo bintest-unicode-1
# build/bin/asm-parser -binary /opt/compiler-explorer/ce/test/filters-cases/bintest-unicode-1.asm > /opt/compiler-explorer/ce/test/filters-cases/bintest-unicode-1.asm.binary.directives.labels.comments.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/bintest-unicode-1.asm.binary.directives.labels.comments.json
# echo aarch64demo
# build/bin/asm-parser -binary resources/aarch64demo.asm > resources/aarch64demo.json
# /opt/compiler-explorer/node/bin/node prettyjson.js resources/aarch64demo.json
# echo clang-maxArray
# build/bin/asm-parser -directives -unused_labels -comment_only /opt/compiler-explorer/ce/test/filters-cases/clang-maxArray.asm > /opt/compiler-explorer/ce/test/filters-cases/clang-maxArray.asm.directives.labels.comments.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/clang-maxArray.asm.directives.labels.comments.json
# echo bigboostexample
# build/bin/asm-parser -directives -unused_labels -comment_only resources/bigboostexample.asm > resources/bigboostexample.asm.directives.labels.comments.json
# /opt/compiler-explorer/node/bin/node prettyjson.js resources/bigboostexample.asm.directives.labels.comments.json
# echo arm-hellow
# build/bin/asm-parser -directives -debugdump /opt/compiler-explorer/ce/test/filters-cases/arm-hellow.asm > /opt/compiler-explorer/ce/test/filters-cases/arm-hellow.asm.directives.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/arm-hellow.asm.directives.json
# echo bug-577_clang
# build/bin/asm-parser -directives -debugdump -unused_labels /opt/compiler-explorer/ce/test/filters-cases/bug-577_clang.asm > /opt/compiler-explorer/ce/test/filters-cases/bug-577_clang.asm.directives.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/bug-577_clang.asm.directives.json
# echo bug-577_clang
# build/bin/asm-parser -directives -debugdump /opt/compiler-explorer/ce/test/filters-cases/clang-hellow.asm > /opt/compiler-explorer/ce/test/filters-cases/clang-hellow.asm.directives.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/clang-hellow.asm.directives.json
# echo arm-hellow labels
# build/bin/asm-parser -directives -unused_labels -debugdump /opt/compiler-explorer/ce/test/filters-cases/arm-hellow.asm > /opt/compiler-explorer/ce/test/filters-cases/arm-hellow.asm.directives.labels.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/arm-hellow.asm.directives.labels.json
# echo bug-1989_alpha labels
# build/bin/asm-parser -directives -unused_labels -debugdump /opt/compiler-explorer/ce/test/filters-cases/bug-1989_alpha.asm > /opt/compiler-explorer/ce/test/filters-cases/bug-1989_alpha.asm.directives.labels.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/bug-1989_alpha.asm.directives.labels.json
# echo bug-1989_sparc labels
# build/bin/asm-parser -directives -unused_labels -debugdump /opt/compiler-explorer/ce/test/filters-cases/bug-1989_sparc.asm > /opt/compiler-explorer/ce/test/filters-cases/bug-1989_sparc.asm.directives.labels.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/bug-1989_sparc.asm.directives.labels.json
# echo 6502-square
# build/bin/asm-parser -directives -unused_labels -comment_only -debugdump /opt/compiler-explorer/ce/test/filters-cases/6502-square.asm > /opt/compiler-explorer/ce/test/filters-cases/6502-square.asm.directives.labels.comments.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/6502-square.asm.directives.labels.comments.json
# echo arm-jump-table
# build/bin/asm-parser -directives -unused_labels -comment_only -debugdump /opt/compiler-explorer/ce/test/filters-cases/arm-jump-table.asm > /opt/compiler-explorer/ce/test/filters-cases/arm-jump-table.asm.directives.labels.comments.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/arm-jump-table.asm.directives.labels.comments.json
# echo arm-hellow
# build/bin/asm-parser -directives -debugdump /opt/compiler-explorer/ce/test/filters-cases/arm-hellow.asm > /opt/compiler-explorer/ce/test/filters-cases/arm-hellow.asm.directives.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/arm-hellow.asm.directives.labels.json
# echo bug-1179
# build/bin/asm-parser -directives -unused_labels -comment_only -debugdump /opt/compiler-explorer/ce/test/filters-cases/bug-1179.asm > /opt/compiler-explorer/ce/test/filters-cases/bug-1179.asm.directives.labels.comments.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/bug-1179.asm.directives.labels.comments.json
# echo avr-loop
# build/bin/asm-parser -directives -unused_labels -comment_only -debugdump /opt/compiler-explorer/ce/test/filters-cases/avr-loop.asm > /opt/compiler-explorer/ce/test/filters-cases/avr-loop.asm.directives.labels.comments.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/avr-loop.asm.directives.labels.comments.json
# echo clang-hellow
# build/bin/asm-parser -directives -unused_labels -debugdump /opt/compiler-explorer/ce/test/filters-cases/clang-hellow.asm > /opt/compiler-explorer/ce/test/filters-cases/clang-hellow.asm.directives.labels.json
# /opt/compiler-explorer/node/bin/node prettyjson.js /opt/compiler-explorer/ce/test/filters-cases/clang-hellow.asm.directives.labels.json