Skip to content
Snippets Groups Projects
Commit ed7a9e18 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Implementing EOC tests.

parent b3243cdf
No related branches found
No related tags found
No related merge requests found
......@@ -57,5 +57,7 @@ INSTALL( TARGETS tnl-init${debugExt}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE )
INSTALL( FILES tnl-err2eoc
tnl-time-series2png
tnl-eoc-test-log
DESTINATION bin
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE )
\ No newline at end of file
#!/usr/bin/perl
while( $line = <> )
{
print "$line"
}
\ No newline at end of file
#!/usr/bin/env python
import sys, string, math
#!/usr/bin/env python
class timeSerie:
def __init__( self, index, label )
self.index = index
self.label = label
inputFile = ""
outputFile = ""
verbose = "false"
timeSeries = []
i = 0
while i < len( arguments ):
if arguments[ i ] == "--input-file":
refinement = arguments[ i + 1 ]
i = i + 2
continue
if arguments[ i ] == "--output-file":
output_file_name = arguments[ i + 1 ]
i = i + 2
continue
if arguments[ i ] == "--time-serie"
index = arguments[ i + 1 ]
label = arguments[ i + 2 ]
timeSeries.append( timeSerie( index, label ) )
i = i + 3
continue
if arguments[ i ] == "--verbose":
verbose = float( arguments[ i + 1 ] )
i = i +2
continue
input_files. append( arguments[ i ] )
i = i + 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment