Megatest

Check-in [12196ddfac]
Login
Overview
Comment:Questionable changes to help debug test_env_vars failure
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | path-and-envvars-fix
Files: files | file ages | folders
SHA1: 12196ddfac2faf10819a6efe67c3eebb0710e3d6
User & Date: mrwellan on 2012-05-29 09:47:03
Other Links: branch diff | manifest | tags
Context
2012-05-29
09:47
Questionable changes to help debug test_env_vars failure Closed-Leaf check-in: 12196ddfac user: mrwellan tags: path-and-envvars-fix
2012-05-25
15:39
Merged v1.44 changes into path-and-envvars-fix branch check-in: 0679eecf71 user: fdk71adm tags: path-and-envvars-fix
Changes

Modified tests/fullrun/tests/test_mt_vars/currentisblah.sh from [38498b5b33] to [20626a4abf].

1
2


3
#!/usr/bin/env bash



grep CURRENT megatest.sh | grep /tmp/nada

|
>
>

1
2
3
4
5
#!/usr/bin/env bash
set -x
set -f
pwd
grep CURRENT megatest.sh | grep /tmp/nada

Modified tests/fullrun/tests/test_mt_vars/testconfig from [601765abe8] to [8214d9b9f0].

1
2
3
4
5



6
7
8
9
10
11
12
[setup]

[ezsteps]
lookittmp   ls /tmp
lookithome  ls /home



# $CURRENT should be /tmp/nada
currentisblah currentisblah.sh

# $BOGOUS should NOT be set
bogousnotset bogousnotset.sh

# ALT_VAR should NOT be set




|
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[setup]

[ezsteps]
lookittmp   ls /tmp
lookithome  ls $HOME

testsimple  sh -c "exit 0"

# $CURRENT should be /tmp/nada
currentisblah currentisblah.sh

# $BOGOUS should NOT be set
bogousnotset bogousnotset.sh

# ALT_VAR should NOT be set