diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-01-14 02:10:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 11:10:02 +0100 |
commit | 94430a2e6de6a9079662db6f5677f978a94e7fce (patch) | |
tree | 35b2c42812b37bec415461bdc2f2a690b5551bd9 /tests | |
parent | 287dec06aee803c45161603a899d8e343c1766a9 (diff) | |
download | Nim-94430a2e6de6a9079662db6f5677f978a94e7fce.tar.gz |
enable tests/stdlib/thttpclient.nim (#16710)
* enable tests/stdlib/thttpclient.nim * disable windows, openbsd
Diffstat (limited to 'tests')
-rw-r--r-- | tests/stdlib/thttpclient.nim | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/stdlib/thttpclient.nim b/tests/stdlib/thttpclient.nim index 4881370ee..1bf3ab893 100644 --- a/tests/stdlib/thttpclient.nim +++ b/tests/stdlib/thttpclient.nim @@ -1,10 +1,13 @@ discard """ cmd: "nim c --threads:on -d:ssl $file" - exitcode: 0 - output: "OK" - disabled: true + disabled: "openbsd" + disabled: "windows" """ +#[ +disabled: see https://github.com/timotheecour/Nim/issues/528 +]# + import strutils from net import TimeoutError @@ -168,5 +171,3 @@ proc ipv6Test() = ipv6Test() syncTest() waitFor(asyncTest()) - -echo "OK" |