The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
624 B
24 lines
624 B
5 years ago
|
#include<stdio.h>
|
||
|
#include<string.h>
|
||
|
#include<stdlib.h>
|
||
|
|
||
|
int main(void) {
|
||
|
if(strcmp(getenv("first"), "val1") != 0) {
|
||
|
fprintf(stderr, "First envvar is wrong. %s\n", getenv("first"));
|
||
|
return 1;
|
||
|
}
|
||
|
if(strcmp(getenv("second"), "val2") != 0) {
|
||
|
fprintf(stderr, "Second envvar is wrong.\n");
|
||
|
return 1;
|
||
|
}
|
||
|
if(strcmp(getenv("third"), "val3:and_more") != 0) {
|
||
|
fprintf(stderr, "Third envvar is wrong.\n");
|
||
|
return 1;
|
||
|
}
|
||
|
if(strstr(getenv("PATH"), "fakepath:") != NULL) {
|
||
|
fprintf(stderr, "Third envvar is wrong.\n");
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|