set host/user/password in test to be from env

pull/200/head
Jacob Barthelmeh 2019-10-09 16:58:05 -06:00
parent 377073d684
commit aebe908223
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
#!/bin/sh #!/bin/sh
# external tests # external tests
host="test.rebex.net" host="$WOLFSSH_EXTERNAL_HOST"
user="demo" user="$WOLFSSH_EXTERNAL_USER"
password="password" password="$WOLFSSH_EXTERNAL_PASSWORD"
if test -n "$WOLFSSH_EXTERNAL_TEST"; then if test -n "$WOLFSSH_EXTERNAL_TEST"; then
echo "WOLFSSH_EXTERNAL_TEST set, running test..." echo "WOLFSSH_EXTERNAL_TEST set, running test..."