summaryrefslogtreecommitdiffstats
path: root/bird.conf
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1999-04-12 21:58:18 +0200
committerPavel Machek <pavel@ucw.cz>1999-04-12 21:58:18 +0200
commit38506f71b0bea5580987e999a7b1a69f58aec7ec (patch)
treef9779191375233fb91582d32eed2489c0e2032ce /bird.conf
parent01bd7759b260b379089acf28cc47bd49572ebd22 (diff)
downloadbird-38506f71b0bea5580987e999a7b1a69f58aec7ec.tar
bird-38506f71b0bea5580987e999a7b1a69f58aec7ec.zip
Sets of integers now actually work. Sets of IP will work as soon as
compare function is ready.
Diffstat (limited to 'bird.conf')
-rw-r--r--bird.conf10
1 files changed, 10 insertions, 0 deletions
diff --git a/bird.conf b/bird.conf
index 3d22f5a..2129bab 100644
--- a/bird.conf
+++ b/bird.conf
@@ -20,6 +20,16 @@ int i;
if 1 <= 1 then print "test 3 passed"; else { print "*** FAIL: test 3"; }
if 1234 < 1234 then { print "*** FAIL: test 4"; quitbird; } else print "test 4 passed";
+ print "Testing IP addresses: 1.2.3.4 = " 1.2.3.4;
+ print "Testing sets of ints = " [ 1, 2, 3 ];
+ print "Testing sets of ints = " [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ];
+ print "Testing sets of IPs = " [ 1.2.3.4, 2.3.4.5, 3.4.5.6 ];
+ print "Sets: true = " 1 ~ [ 1, 2, 3 ];
+ print " false = " 1 ~ [ 2, 3, 4 ];
+ print "a..b: true = " 5 ~ [ 4 .. 7 ];
+ print " false = " 5 ~ [ 2, 3, 4, 7..11 ];
+ print "IPsets: true = " 1.2.3.4 ~ [ 1.2.3.3..1.2.3.5 ];
+ print " false = " 1.2.3.4 ~ [ 1.2.3.3, 1.2.3.5 ];
print "done";
quitbird;