aboutsummaryrefslogtreecommitdiffstats
path: root/test/test-env_i.sh
blob: 454a7b4949e8da0bdf081504e0d5465d0b225e3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
#
# SPDX-License-Identifier: LGPL-2.1-only
#

env -i A=A B=B C=C env | grep -q "PSEUDO_"

if [ "$?" = "0" ]
then
    #echo "Passed."
    exit 0
fi
#echo "Failed"
exit 1