summaryrefslogtreecommitdiff
path: root/ACE/bin/fuzz.pl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-11-12 15:55:07 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-11-12 15:55:07 +0000
commit7c749fb087f7e58eb34f4fcb43642bbdafff3809 (patch)
treea52d53743a1ad026fa58ca722b4c312514fef1de /ACE/bin/fuzz.pl
parentd0702f5a5231168104917d1691dc2ad1821ddd2c (diff)
downloadATCD-7c749fb087f7e58eb34f4fcb43642bbdafff3809.tar.gz
Thu Nov 12 15:53:15 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/fuzz.pl: Exteded perl fuzz checks
Diffstat (limited to 'ACE/bin/fuzz.pl')
-rwxr-xr-xACE/bin/fuzz.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/bin/fuzz.pl b/ACE/bin/fuzz.pl
index 73988ec60d8..8ddb174ea01 100755
--- a/ACE/bin/fuzz.pl
+++ b/ACE/bin/fuzz.pl
@@ -1446,11 +1446,11 @@ sub check_for_bad_run_test ()
print_error ("$file:$.: using ACE_RUN_VX_TGTHOST, use TestTarget::HostName");
}
- if (m/SpawnWaitKill\s*\(\d+\)/) {
- print_error ("$file:$.: uses hardcoded timeout for SpawnWaitKill");
+ if (m/Spawn(Wait(Kill)?)?\s*\(.+\->ProcessStop\)/) {
+ print_error ("$file:$.: uses Stop together with Spawn");
}
- if (m/Spawn\s*\(\d+\)/) {
+ if (m/Spawn(Wait(Kill)?)?\s*\(\d+\)/) {
print_error ("$file:$.: uses hardcoded timeout for Spawn");
}