summary refs log tree commit diff
path: root/jenkins.sh
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-12-01 13:24:43 +0000
committerMark Haines <mark.haines@matrix.org>2015-12-01 13:24:43 +0000
commit5f9a2cb337206a1f9b197afe25859a6894e1ccbf (patch)
tree8ec93e478561837c6fbf903d679d92c12bf17dfc /jenkins.sh
parentSet the port when running sytest under postgresql (diff)
downloadsynapse-5f9a2cb337206a1f9b197afe25859a6894e1ccbf.tar.xz
Write the tap results for each database to different files when running sytest
Diffstat (limited to 'jenkins.sh')
-rwxr-xr-xjenkins.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins.sh b/jenkins.sh
index 26e0088cd9..0018ca610a 100755
--- a/jenkins.sh
+++ b/jenkins.sh
@@ -45,7 +45,7 @@ export PERL5LIB PERL_MB_OPT PERL_MM_OPT
 : ${PORT_BASE:=8000}
 
 echo >&2 "Running sytest with SQLite3";
-./run-tests.pl -O tap --synapse-directory .. --all --port-base $PORT_BASE > results.tap
+./run-tests.pl -O tap --synapse-directory .. --all --port-base $PORT_BASE > results-sqlite3.tap
 
 RUN_POSTGRES=""
 
@@ -64,7 +64,7 @@ done
 if test $RUN_POSTGRES = ":$(($PORT_BASE + 1)):$(($PORT_BASE + 2))"; then
     echo >&2 "Running sytest with PostgreSQL";
     pip install psycopg2
-    ./run-tests.pl -O tap --synapse-directory .. --all --port-base $PORT_BASE > results.tap
+    ./run-tests.pl -O tap --synapse-directory .. --all --port-base $PORT_BASE > results-postgresql.tap
 else
     echo >&2 "Skipping running sytest with PostgreSQL, $RUN_POSTGRES"
 fi