fix failing test

forgot that func() != func(void) in c
0.55
Elliot Haisley 4 years ago committed by Nirbheek Chauhan
parent cc745d5c1a
commit a6914d89fa
  1. 6
      test cases/common/235 disabler array addition/meson.build
  2. 2
      test cases/common/235 disabler array addition/test.c

@ -2,8 +2,8 @@ project('disabler_inside_array', 'c')
exes = []
exes += executable('a', 'test.c')
exes += library('a', 'test.c')
exes += executable('b', 'test.c', dependencies : disabler())
exes += library('b', 'test.c', dependencies : disabler())
exes += executable('c', 'test.c')
exes += library('c', 'test.c')

@ -1 +1 @@
int main() { return 0; }
int stub(void) { return 0; }

Loading…
Cancel
Save