Duplicate tests that are run twice as both C and C++ tests to fix parallel make: empty
This commit is contained in:
parent
611bbe7ddf
commit
bc3bf51af2
7 changed files with 15 additions and 1 deletions
|
|
@ -603,7 +603,7 @@ C_TEST_CASES += \
|
|||
char_constant \
|
||||
const_const \
|
||||
constant_expr \
|
||||
empty \
|
||||
empty_c \
|
||||
enums \
|
||||
enum_forward \
|
||||
enum_macro \
|
||||
|
|
|
|||
1
Examples/test-suite/empty_c.i
Normal file
1
Examples/test-suite/empty_c.i
Normal file
|
|
@ -0,0 +1 @@
|
|||
%module empty_c
|
||||
6
Examples/test-suite/go/empty_c_runme.go
Normal file
6
Examples/test-suite/go/empty_c_runme.go
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
package main
|
||||
|
||||
import _ "./empty_c"
|
||||
|
||||
func main() {
|
||||
}
|
||||
1
Examples/test-suite/javascript/empty_c_runme.js
Normal file
1
Examples/test-suite/javascript/empty_c_runme.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
var empty_c = require("empty_c");
|
||||
2
Examples/test-suite/octave/empty_c_runme.m
Normal file
2
Examples/test-suite/octave/empty_c_runme.m
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
empty_c
|
||||
|
||||
1
Examples/test-suite/python/empty_c_runme.py
Normal file
1
Examples/test-suite/python/empty_c_runme.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
import empty_c
|
||||
3
Examples/test-suite/scilab/empty_c_runme.sci
Normal file
3
Examples/test-suite/scilab/empty_c_runme.sci
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
exec("swigtest.start", -1);
|
||||
|
||||
exec("swigtest.quit", -1);
|
||||
Loading…
Add table
Add a link
Reference in a new issue