summaryrefslogtreecommitdiff
path: root/ACE/tests/High_Res_Timer_Test.cpp
diff options
context:
space:
mode:
authorAbdullah Sowayan <sowayan@users.noreply.github.com>2007-07-19 03:03:32 +0000
committerAbdullah Sowayan <sowayan@users.noreply.github.com>2007-07-19 03:03:32 +0000
commitdcf3914840561f45f4f5a377707c20d098fe8949 (patch)
treeb69d024137f675c24ef1cec9a2b87c5d6a912987 /ACE/tests/High_Res_Timer_Test.cpp
parent2ffc5451399d51c893fe4b16d0a691990be4c671 (diff)
downloadATCD-dcf3914840561f45f4f5a377707c20d098fe8949.tar.gz
Thu Jul 19 03:00:57 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
Diffstat (limited to 'ACE/tests/High_Res_Timer_Test.cpp')
-rw-r--r--ACE/tests/High_Res_Timer_Test.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/ACE/tests/High_Res_Timer_Test.cpp b/ACE/tests/High_Res_Timer_Test.cpp
index c537790691b..5bfcb7ca573 100644
--- a/ACE/tests/High_Res_Timer_Test.cpp
+++ b/ACE/tests/High_Res_Timer_Test.cpp
@@ -113,14 +113,19 @@ run_main (int argc, ACE_TCHAR *argv[])
u_int iterations = 1;
+ //FUZZ: disable check_for_lack_ACE_OS
ACE_Get_Opt getopt (argc, argv, ACE_TEXT ("i:"));
for (int c; (c = getopt ()) != -1; )
- switch (c)
- {
- case 'i':
- iterations = ACE_OS::atoi (getopt.opt_arg ());
- break;
- }
+ {
+ //FUZZ: enable check_for_lack_ACE_OS
+
+ switch (c)
+ {
+ case 'i':
+ iterations = ACE_OS::atoi (getopt.opt_arg ());
+ break;
+ }
+ }
// We don't check for errors if the interval is shorter than this
// value because the OS has a finite resolution anyway.