Rename '183 as-needed' common test into '184 as-needed'

Also use !bool instead of bool == false.
This commit is contained in:
Aleksey Filippov 2018-03-20 22:15:30 +00:00 committed by Jussi Pakkanen
parent 150351cfdd
commit 513051efcf
7 changed files with 7 additions and 7 deletions

View File

@ -1,7 +0,0 @@
#include <cstdlib>
#include "libA.h"
int main() {
return (meson_test_as_needed::linked == false ? EXIT_SUCCESS : EXIT_FAILURE);
}

View File

@ -0,0 +1,7 @@
#include <cstdlib>
#include "libA.h"
int main() {
return !meson_test_as_needed::linked ? EXIT_SUCCESS : EXIT_FAILURE;
}