summaryrefslogtreecommitdiffstats
path: root/test cases/common/41 test args/env2vars.c
blob: e940c9a8c5a26bf6ec76ad0ea8f4c22a34420d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include<stdio.h>
#include<string.h>
#include<stdlib.h>

int main(void) {
    if(strcmp(getenv("first"), "something-else") != 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;
}