afba8d3c22
This makes sure that the test fails if not URL is set. This allows make sure we test the non-coordination tests (e.g. partitioner) with all base drives (zake, ipc, file) by using the TOOZ_TEST_URL to run the tests. Change-Id: Id500636d166e5ebcc54fda16ef128f91f32170d6
9 lines
82 B
Bash
Executable File
9 lines
82 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
for d in $TOOZ_TEST_URLS
|
|
do
|
|
TOOZ_TEST_URL=$d $*
|
|
done
|