File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -19,18 +19,20 @@ cmake -DCMAKE_INSTALL_PREFIX=${INST_DIR} \
19
19
../llvm
20
20
make -j ` nproc` install
21
21
22
+ # clang-format any new files that we've introduced ourselves.
23
+ cd ..
24
+ PATH=${INST_DIR} /bin:${PATH}
25
+ sh yk_format_new_files.sh
26
+ git diff --exit-code
27
+
22
28
# There are many test suites for LLVM:
23
29
# https://llvm.org/docs/TestingGuide.html
24
30
#
25
31
# This runs unit and integration tests.
32
+ cd build
26
33
make -j ` nproc` check-all
27
34
cd ..
28
35
29
- # clang-format any new files that we've introduced ourselves.
30
- PATH=${INST_DIR} /bin:${PATH}
31
- sh yk_format_new_files.sh
32
- git diff --exit-code
33
-
34
36
# FIXME The commented code below should run the `test-suite` tests, as
35
37
# described at https://llvm.org/docs/TestSuiteGuide.html.
36
38
#
You can’t perform that action at this time.
0 commit comments