diff options
author | Omar Polo <op@omarpolo.com> | 2021-02-01 11:04:21 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-02-01 11:04:21 +0000 |
commit | 6ff23c673989f92a42da0029728fe80ca3dde40f (patch) | |
tree | 02fb7d2de58f55a1ccab8645c0f509d7a799bae0 /regress | |
parent | 7808978667888512395e63519751796dacae8550 (diff) |
use absolute paths in the regression suite
Diffstat (limited to 'regress')
-rwxr-xr-x | regress/runtime | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/runtime b/regress/runtime index bc0f0ee..cd35b70 100755 --- a/regress/runtime +++ b/regress/runtime @@ -10,9 +10,9 @@ ipv6 off port 10965 $1 server "localhost" { - cert "cert.pem" - key "key.pem" - root "testdata" + cert "$PWD/cert.pem" + key "$PWD/key.pem" + root "$PWD/testdata" $2 } EOF |