Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ run_system_tests() {
echo "running the system test suite"
# Change to SYSTEM_TEST_DIR directory
cd "${SYSTEM_TEST_DIR}" || exit 1
if ! ./run.sh; then
if ! python3 run_system_tests.py; then
echo "error while running system tests"
exit 1
fi
Expand Down
1 change: 1 addition & 0 deletions src/tipc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ int main(int argc, char *argv[]) {
if (!astStream.good()) {
LOG_S(ERROR) << "tipc: error: failed to open '" << astFile
<< "' for writing";
std::exit(EXIT_FAILURE);
} else {
FrontEnd::astVisualize(ast, astStream);
}
Expand Down
2 changes: 2 additions & 0 deletions test/system/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/bash

# Deprecated: use run_system_tests.py instead
declare -r ROOT_DIR=${TRAVIS_BUILD_DIR:-$(git rev-parse --show-toplevel)}
declare -r TIPC=${ROOT_DIR}/build/src/tipc
declare -r RTLIB=${ROOT_DIR}/rtlib
Expand Down
Loading