Skip to content

Commit 1bd0a7b

Browse files
committed
Add testvars.sh to bitreq
Add all of the features to the lists. async, async-https and proxy require std and are therfore not listed in the no-std features.
1 parent 7b10438 commit 1bd0a7b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

bitreq/contrib/test_vars.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# No shebang, this file should not be executed.
2+
# shellcheck disable=SC2148
3+
#
4+
# disable verify unused vars, despite the fact that they are used when sourced
5+
# shellcheck disable=SC2034
6+
7+
# Test all these features with "std" enabled.
8+
FEATURES_WITH_STD="log https https-rustls proxy async async-https"
9+
10+
# Test all these features without "std" enabled.
11+
FEATURES_WITHOUT_STD="log https https-rustls"
12+
13+
# Run these examples.
14+
EXAMPLES=""

0 commit comments

Comments
 (0)