summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJoseph Henry <[email protected]>2017-12-14 16:27:25 -0800
committerJoseph Henry <[email protected]>2017-12-14 16:27:25 -0800
commit25e2c7b5639f975a03a0badb0d020fe25e179421 (patch)
tree2afc78655bb04e5901b2821cea66535d69ccc16b /test
parent7605cb5477289969156336b63598d1e89ec17c2a (diff)
Updated create_test_identities.sh
Diffstat (limited to 'test')
-rwxr-xr-xtest/create_test_identities.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/create_test_identities.sh b/test/create_test_identities.sh
index 8ddcf6b..5f38015 100755
--- a/test/create_test_identities.sh
+++ b/test/create_test_identities.sh
@@ -1,11 +1,11 @@
# !/bin/bash
# Generates test identities and joins them to a test network
-NWID=""
+NWID=$1
-mkdir -p test/alice test/bob test/carol test/ted
+mkdir -p alice bob carol ted
-./build/darwin/selftest generate_id ${NWID} test/alice
-./build/darwin/selftest generate_id ${NWID} test/bob
-./build/darwin/selftest generate_id ${NWID} test/carol
-./build/darwin/selftest generate_id ${NWID} test/ted
+./../bin/selftest generate_id ${NWID} alice
+./../bin/selftest generate_id ${NWID} bob
+./../bin/selftest generate_id ${NWID} carol
+./../bin/selftest generate_id ${NWID} ted