search for: testcount

Displaying 3 results from an estimated 3 matches for "testcount".

2009 May 19
1
[PATCH node-image] Fixing the autotest script.
...oot} + --log-facility=/tmp/dnsmasq-${nodename}.log + --log-queries + --log-dhcp + --pid-file=${pidfile}" if [ -n "$macaddress" ]; then dns_startup="${dns_startup} --dhcp-host=${macaddress},${NODE_ADDRESS}" fi @@ -407,8 +406,7 @@ tests=''; testcount=0; # $1 - test name add_test () { - tests[$testcount]=$1 - testcount=$testcount+1 + tests="${tests} $1" } # $1 - node name @@ -470,19 +468,20 @@ substitute_boot_device () { fi } -add_test "test_stateless_pxe_with_nohd" -test_stateless_pxe_with_nohd () {...
2017 Oct 17
3
[Bug 1190] New: adding element to map with stateful object and flag interval raise SIGSEGV
...Component: nft Assignee: pablo at netfilter.org Reporter: karel at unitednetworks.cz latest nft, libnftnl, libmnl (v0.8, v1.0.8, v1.0.4 + 2 more commits) kernel 4.13.7 x86-64 commands: nft add map x testmap { type inet_service: counter\; flags interval\;} nft add counter x testcounter nft add element x testmap { 0-100 : "testcounter" } Neoprávněný přístup do paměti (SIGSEGV) -- You are receiving this mail because: You are watching all bug changes. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.netfilter.org/pipermai...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...sudo virsh destroy $nodename > /dev/null 2>&1 + fi + if $undefine; then + sudo virsh undefine $nodename > /dev/null 2>&1 + fi + fi + fi +} + +# for each test created, add it to the follow array: +tests=''; testcount=0; + +# $1 - test name +add_test () { + tests="${tests} $1" +} + +# $1 - node name +start_virt_viewer () { + local nodename=$1 + + sudo virt-viewer $nodename > /dev/null 2>&1& +} + +# $1 - the node's name +# $2 - kernel arguments +# $3 - working directory +boot_...