diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2025-07-08 15:50:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-08 15:50:20 -0400 |
| commit | d90493618ce34a732c5411d1670be57d4dd9db4e (patch) | |
| tree | 99719cf91d7faaf8ad37ef70d3baaaf3ce316176 /tests/setup.sh | |
| parent | e90140a7628d24edef090e548179c64170d3338b (diff) | |
| parent | 1e572f3a653ddd6385a0ea49cacfbf2f3a32ce87 (diff) | |
| download | stasis-d90493618ce34a732c5411d1670be57d4dd9db4e.tar.gz | |
Merge pull request #116 from jhunkeler/breakdown
Breakdown & Bug fixes
Diffstat (limited to 'tests/setup.sh')
| -rw-r--r-- | tests/setup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/setup.sh b/tests/setup.sh index 7e38cf9..bce2fbd 100644 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -78,7 +78,7 @@ teardown_workspace() { install_stasis() { pushd "$BUILD_DIR" - if ! cmake -DCMAKE_INSTALL_PREFIX="$INSTALL_DIR" -DCMAKE_BUILD_TYPE=Debug "${TOPDIR}"/../..; then + if ! cmake -DCMAKE_INSTALL_PREFIX="$INSTALL_DIR" -DCMAKE_BUILD_TYPE=Debug -DDEBUG_MESSAGES=ON "${TOPDIR}"/../..; then echo "cmake failed" >&2 return 1 fi @@ -109,7 +109,7 @@ STASIS_TEST_RESULT_SKIP=0 run_command() { local logfile="$(mktemp).log" local cmd="${@}" - local lines_on_error=100 + local lines_on_error=1000 /bin/echo "Testing: $cmd " $cmd &>"$logfile" |
