File: exe.tmpl

package info (click to toggle)
libxml-bare-perl 0.45-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,216 kB
  • ctags: 89
  • sloc: xml: 15,836; perl: 1,142; ansic: 665; cpp: 41; makefile: 2
file content (43 lines) | stat: -rwxr-xr-x 1,077 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#c
Parsing using various test executables of libraries

#0+
if( -e "exe${div}barexml.exe" ) {
  ($s, $usec) = gettimeofday();
  `exe${div}barexml $file`;
  ($s3, $usec3) = gettimeofday();
  $sc = $s3-$s + (($usec3-$usec)/1000000);
  $base3 = $sc;
  $sc /= $base3;
  if( !$onlyone ) { tabit('Bare XML','        ','        ',fixed( $sc )); }
}

#+
if( -e "exe${div}tinyxml.exe" ) {
  ($s, $usec) = gettimeofday();
  `exe${div}tinyxml $file`;
  ($s3, $usec3) = gettimeofday();
  $sc = $s3-$s + (($usec3-$usec)/1000000);
  $sc /= $base3;
  tabit('Tiny XML','        ','        ',fixed( $sc ));
}

#+
if( -e "exe${div}ezxml.exe" ) {
  ($s, $usec) = gettimeofday();
  `exe${div}ezxml $file`;
  ($s3, $usec3) = gettimeofday();
  $sc = $s3-$s + (($usec3-$usec)/1000000);
  $sc /= $base3;
  tabit('EzXML','        ','        ',fixed( $sc ));
}

#+
if( -e "exe${div}xmlio.exe" ) {
  ($s, $usec) = gettimeofday();
  `exe${div}xmlio $file`;
  ($s3, $usec3) = gettimeofday();
  $sc = $s3-$s + (($usec3-$usec)/1000000);
  $sc /= $base3;
  tabit('XMLIO','        ','        ',fixed( $sc ));
}