38 lines
751 B
C
38 lines
751 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2018 Linux Test Project
|
|
* Copyright (C) 2015 Cyril Hrubis chrubis@suse.cz
|
|
*/
|
|
|
|
#define TST_NO_DEFAULT_MAIN
|
|
#include <stdlib.h>
|
|
#include "tst_test.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
char *env;
|
|
|
|
tst_reinit();
|
|
|
|
if (argc != 2)
|
|
tst_brk(TFAIL, "argc is %d, expected 2", argc);
|
|
|
|
if (strcmp(argv[1], "canary"))
|
|
tst_brk(TFAIL, "argv[1] is %s, expected 'canary'", argv[1]);
|
|
|
|
env = getenv("LTP_TEST_ENV_VAR");
|
|
|
|
if (!env)
|
|
tst_brk(TFAIL, "LTP_TEST_ENV_VAR is missing");
|
|
|
|
if (strcmp(env, "test"))
|
|
tst_brk(TFAIL, "LTP_TEST_ENV_VAR='%s', expected test", env);
|
|
|
|
if (getenv("PATH"))
|
|
tst_brk(TFAIL, "PATH is in environment");
|
|
|
|
tst_res(TPASS, "%s executed", argv[0]);
|
|
|
|
return 0;
|
|
}
|