Skip to content

Commit

Permalink
Merge pull request #299 from jwillemsen/jwi-forceidl4
Browse files Browse the repository at this point in the history
Force idl3 as version
  • Loading branch information
jwillemsen authored Aug 3, 2023
2 parents 22ec39a + 6636875 commit 2f6d7ce
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/idl4/bitmask/run_illegal_idl3_test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
open (STDERR, ">&STDOUT");

# Compile the IDL
system ("$ridl", "$input_file");
system ("$ridl", "--idl-version=3", "$input_file");

#Redirect the null device output back to the screen
open (STDOUT, ">&OLDOUT");
Expand Down
2 changes: 1 addition & 1 deletion tests/idl4/bitset/run_illegal_idl3_test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
open (STDERR, ">&STDOUT");

# Compile the IDL
system ("$ridl", "$input_file");
system ("$ridl", "--idl-version=3", "$input_file");

#Redirect the null device output back to the screen
open (STDOUT, ">&OLDOUT");
Expand Down
2 changes: 1 addition & 1 deletion tests/idl4/explicit_ints/run_illegal_idl3_test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
open (STDERR, ">&STDOUT");

# Compile the IDL
system ("$ridl", "$input_file");
system ("$ridl", "--idl-version=3", "$input_file");

#Redirect the null device output back to the screen
open (STDOUT, ">&OLDOUT");
Expand Down
2 changes: 1 addition & 1 deletion tests/idl4/map/run_illegal_idl3_test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
open (STDERR, ">&STDOUT");

# Compile the IDL
system ("$ridl", "$input_file");
system ("$ridl", "--idl-version=3", "$input_file");

#Redirect the null device output back to the screen
open (STDOUT, ">&OLDOUT");
Expand Down
2 changes: 1 addition & 1 deletion tests/idl4/struct_inheritance/run_illegal_idl3_test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
open (STDERR, ">&STDOUT");

# Compile the IDL
system ("$ridl", "$input_file");
system ("$ridl", "--idl-version=3", "$input_file");

#Redirect the null device output back to the screen
open (STDOUT, ">&OLDOUT");
Expand Down
2 changes: 1 addition & 1 deletion tests/idl4/union/run_illegal_idl3_test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
open (STDERR, ">&STDOUT");

# Compile the IDL
system ("$ridl", "$input_file");
system ("$ridl", "--idl-version=3", "$input_file");

#Redirect the null device output back to the screen
open (STDOUT, ">&OLDOUT");
Expand Down

0 comments on commit 2f6d7ce

Please sign in to comment.