Skip to content

Commit

Permalink
Added t2243 to test for issue #483.
Browse files Browse the repository at this point in the history
  • Loading branch information
gittup committed Jan 21, 2024
1 parent 6a92109 commit 5bb6052
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions test/t2243-import4.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#! /bin/sh -e
# tup - A file-based build system
#
# Copyright (C) 2024 Mike Shal <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

# Make sure importing with a default value works when the environment variable
# is set the first time tup is called.

. ./tup.sh

export MARFNOEXIST=existsatstart
cat > Tupfile << HERE
import MARFNOEXIST=defaultval
: |> Var is: \$(MARFNOEXIST) end |>
HERE
parse

tup_dep_exist $ MARFNOEXIST 0 .
tup_object_exist . 'Var is: existsatstart end'

eotup

0 comments on commit 5bb6052

Please sign in to comment.