-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added t8115, t8116 - tests for things in variants becoming directories.
If we have a generated file that is built in a variant directory, and later the user creates a directory of the same name of the generated file, we have to remove the generated file in the variant directory before trying to parse it. Similarly, t8116 tests the case where there is a generated directory in the variant and then becomes a real directory.
- Loading branch information
Showing
3 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#! /bin/sh -e | ||
# tup - A file-based build system | ||
# | ||
# Copyright (C) 2024 Mike Shal <marfey@gmail.com> | ||
# | ||
# 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. | ||
|
||
# Have a variant output filename that then becomes a directory in the srcdir. | ||
# The output should be removed in the variant location and be re-created as a | ||
# directory. | ||
. ./tup.sh | ||
|
||
cat > Tupfile << HERE | ||
: |> gcc -c hello.c -o %o |> hello | ||
HERE | ||
mkdir build | ||
touch build/tup.config hello.c | ||
update | ||
|
||
mkdir hello | ||
mv Tupfile hello.c hello | ||
update | ||
|
||
check_exist build/hello/hello | ||
|
||
eotup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#! /bin/sh -e | ||
# tup - A file-based build system | ||
# | ||
# Copyright (C) 2024 Mike Shal <marfey@gmail.com> | ||
# | ||
# 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. | ||
|
||
# Like t8115, but we have a generated directory in the variant. | ||
. ./tup.sh | ||
|
||
cat > Tupfile << HERE | ||
: |> gcc -c hello.c -o %o |> hello/out | ||
HERE | ||
mkdir build | ||
touch build/tup.config hello.c | ||
update | ||
|
||
mkdir hello | ||
mv Tupfile hello.c hello | ||
update | ||
|
||
check_exist build/hello/hello/out | ||
|
||
eotup |