aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-10-25 10:57:45 +0200
committerChristian Grothoff <christian@grothoff.org>2018-10-25 10:58:10 +0200
commit70b9b7a3845340c2ea67c115fd81215dee59e870 (patch)
treea81016fa5fab3e4ce212022d7d9e256c038cd6eb
parent9b52c9179b935f3afbf7119e37af2bf6685efa20 (diff)
downloadgnunet-70b9b7a3845340c2ea67c115fd81215dee59e870.tar.gz
gnunet-70b9b7a3845340c2ea67c115fd81215dee59e870.zip
clarify license of test scripts
-rwxr-xr-xsrc/gns/test_gns_at_lookup.sh1
-rwxr-xr-xsrc/gns/test_gns_cname_lookup.sh1
-rwxr-xr-xsrc/gns/test_gns_delegated_lookup.sh1
-rwxr-xr-xsrc/gns/test_gns_dht_lookup.sh1
-rwxr-xr-xsrc/gns/test_gns_gns2dns_cname_lookup.sh1
-rwxr-xr-xsrc/gns/test_gns_ipv6_lookup.sh1
-rwxr-xr-xsrc/gns/test_gns_lookup.sh1
-rwxr-xr-xsrc/gns/test_gns_mx_lookup.sh1
-rwxr-xr-xsrc/gns/test_gns_quickupdate.sh1
-rwxr-xr-xsrc/gns/test_gns_rel_expiration.sh1
-rwxr-xr-xsrc/gns/test_gns_revocation.sh1
-rwxr-xr-xsrc/gns/test_gns_soa_lookup.sh1
-rwxr-xr-xsrc/gns/test_gns_txt_lookup.sh1
-rwxr-xr-xsrc/gns/test_gns_zkey_lookup.sh1
-rwxr-xr-xsrc/gns/test_gnunet_gns.sh2
15 files changed, 15 insertions, 1 deletions
diff --git a/src/gns/test_gns_at_lookup.sh b/src/gns/test_gns_at_lookup.sh
index 8c1d2a088..d900c070b 100755
--- a/src/gns/test_gns_at_lookup.sh
+++ b/src/gns/test_gns_at_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 4
4LOCATION=$(which gnunet-config) 5LOCATION=$(which gnunet-config)
diff --git a/src/gns/test_gns_cname_lookup.sh b/src/gns/test_gns_cname_lookup.sh
index 00ccd265b..f6b7a842d 100755
--- a/src/gns/test_gns_cname_lookup.sh
+++ b/src/gns/test_gns_cname_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 4
4LOCATION=$(which gnunet-config) 5LOCATION=$(which gnunet-config)
diff --git a/src/gns/test_gns_delegated_lookup.sh b/src/gns/test_gns_delegated_lookup.sh
index 3374f1b3b..21774ad8d 100755
--- a/src/gns/test_gns_delegated_lookup.sh
+++ b/src/gns/test_gns_delegated_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3which timeout &> /dev/null && DO_TIMEOUT="timeout 30" 4which timeout &> /dev/null && DO_TIMEOUT="timeout 30"
4 5
diff --git a/src/gns/test_gns_dht_lookup.sh b/src/gns/test_gns_dht_lookup.sh
index 64af868a5..07e559752 100755
--- a/src/gns/test_gns_dht_lookup.sh
+++ b/src/gns/test_gns_dht_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3which timeout &> /dev/null && DO_TIMEOUT="timeout 30" 4which timeout &> /dev/null && DO_TIMEOUT="timeout 30"
4 5
diff --git a/src/gns/test_gns_gns2dns_cname_lookup.sh b/src/gns/test_gns_gns2dns_cname_lookup.sh
index 32e730d4c..84ad8549f 100755
--- a/src/gns/test_gns_gns2dns_cname_lookup.sh
+++ b/src/gns/test_gns_gns2dns_cname_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 4
4LOCATION=$(which gnunet-config) 5LOCATION=$(which gnunet-config)
diff --git a/src/gns/test_gns_ipv6_lookup.sh b/src/gns/test_gns_ipv6_lookup.sh
index 301e6ae0c..72da5ee2c 100755
--- a/src/gns/test_gns_ipv6_lookup.sh
+++ b/src/gns/test_gns_ipv6_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 4
4LOCATION=$(which gnunet-config) 5LOCATION=$(which gnunet-config)
diff --git a/src/gns/test_gns_lookup.sh b/src/gns/test_gns_lookup.sh
index 79558afae..2dffa1251 100755
--- a/src/gns/test_gns_lookup.sh
+++ b/src/gns/test_gns_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 4
4LOCATION=$(which gnunet-config) 5LOCATION=$(which gnunet-config)
diff --git a/src/gns/test_gns_mx_lookup.sh b/src/gns/test_gns_mx_lookup.sh
index 5a7ef21c3..3a360494b 100755
--- a/src/gns/test_gns_mx_lookup.sh
+++ b/src/gns/test_gns_mx_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 4
4LOCATION=$(which gnunet-config) 5LOCATION=$(which gnunet-config)
diff --git a/src/gns/test_gns_quickupdate.sh b/src/gns/test_gns_quickupdate.sh
index e0eb33f2e..d9807fe22 100755
--- a/src/gns/test_gns_quickupdate.sh
+++ b/src/gns/test_gns_quickupdate.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 4
4LOCATION=$(which gnunet-config) 5LOCATION=$(which gnunet-config)
diff --git a/src/gns/test_gns_rel_expiration.sh b/src/gns/test_gns_rel_expiration.sh
index a266a7484..66adbb631 100755
--- a/src/gns/test_gns_rel_expiration.sh
+++ b/src/gns/test_gns_rel_expiration.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 4
4LOCATION=$(which gnunet-config) 5LOCATION=$(which gnunet-config)
diff --git a/src/gns/test_gns_revocation.sh b/src/gns/test_gns_revocation.sh
index 12f0c0881..08a0f8ac1 100755
--- a/src/gns/test_gns_revocation.sh
+++ b/src/gns/test_gns_revocation.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3which timeout &> /dev/null && DO_TIMEOUT="timeout 5" 4which timeout &> /dev/null && DO_TIMEOUT="timeout 5"
4 5
diff --git a/src/gns/test_gns_soa_lookup.sh b/src/gns/test_gns_soa_lookup.sh
index 82a5885c3..6a09ac8c7 100755
--- a/src/gns/test_gns_soa_lookup.sh
+++ b/src/gns/test_gns_soa_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 4
4LOCATION=$(which gnunet-config) 5LOCATION=$(which gnunet-config)
diff --git a/src/gns/test_gns_txt_lookup.sh b/src/gns/test_gns_txt_lookup.sh
index ce9b9e806..6c6b4b3f6 100755
--- a/src/gns/test_gns_txt_lookup.sh
+++ b/src/gns/test_gns_txt_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 4
4LOCATION=$(which gnunet-config) 5LOCATION=$(which gnunet-config)
diff --git a/src/gns/test_gns_zkey_lookup.sh b/src/gns/test_gns_zkey_lookup.sh
index 5e67e0ce2..b36a16fa2 100755
--- a/src/gns/test_gns_zkey_lookup.sh
+++ b/src/gns/test_gns_zkey_lookup.sh
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2# This file is in the public domain.
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3which timeout &> /dev/null && DO_TIMEOUT="timeout 5" 4which timeout &> /dev/null && DO_TIMEOUT="timeout 5"
4 5
diff --git a/src/gns/test_gnunet_gns.sh b/src/gns/test_gnunet_gns.sh
index 749d80b84..f6b4e721a 100755
--- a/src/gns/test_gnunet_gns.sh
+++ b/src/gns/test_gnunet_gns.sh
@@ -1,5 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2 2# This file is in the public domain.
3LOCATION=$(which gnunet-config) 3LOCATION=$(which gnunet-config)
4if [ -z $LOCATION ] 4if [ -z $LOCATION ]
5then 5then