mirror of https://github.com/swig/swig
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
|
@ -603,7 +603,7 @@ C_TEST_CASES += \
|
|||
char_constant \
|
||||
const_const \
|
||||
constant_expr \
|
||||
empty \
|
||||
empty_c \
|
||||
enums \
|
||||
enum_forward \
|
||||
enum_macro \
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
%module empty_c
|
|
@ -0,0 +1,6 @@
|
|||
package main
|
||||
|
||||
import _ "./empty_c"
|
||||
|
||||
func main() {
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
var empty_c = require("empty_c");
|
|
@ -0,0 +1,2 @@
|
|||
empty_c
|
||||
|
|
@ -0,0 +1 @@
|
|||
import empty_c
|
|
@ -0,0 +1,3 @@
|
|||
exec("swigtest.start", -1);
|
||||
|
||||
exec("swigtest.quit", -1);
|
Loading…
Reference in New Issue