Fix two test cases

This commit is contained in:
Niklas Claesson 2018-04-21 23:07:26 +02:00 committed by Nirbheek Chauhan
parent eb6b56216c
commit d4a5a8419f
2 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
project('try compile', 'c', 'cpp')
code = '''#include<stdio.h>
void func() { printf("Something.\\n"); }
void func() { printf("Something.\n"); }
'''
breakcode = '''#include<nonexisting.h>
void func() { printf("This won't work.\\n"); }
void func() { printf("This won't work.\n"); }
'''
foreach compiler : [meson.get_compiler('c'), meson.get_compiler('cpp')]

View File

@ -13,8 +13,8 @@ endif
ok_code = '''#include<stdio.h>
int main(int argc, char **argv) {
printf("%s\\n", "stdout");
fprintf(stderr, "%s\\n", "stderr");
printf("%s\n", "stdout");
fprintf(stderr, "%s\n", "stderr");
return 0;
}
'''