diff options
| author | Gaëtan Gilbert | 2018-05-14 14:31:19 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2018-05-14 14:31:19 +0200 |
| commit | b8a71cf8281f85233e0b3d5568a85506157eb4d9 (patch) | |
| tree | 87c7c0bca893c88b8630f99c839999b7bda769f7 /test-suite/misc | |
| parent | 9e3989f949c1e3f20031d9af5a7bc89d97f5a951 (diff) | |
| parent | 32fadefb0114ed021818ab1be203df807a198228 (diff) | |
Merge PR #7479: Move 4722 (dangling symlink) to misc tests, remove dangling symlink from repo
Diffstat (limited to 'test-suite/misc')
| -rw-r--r-- | test-suite/misc/.gitignore | 2 | ||||
| -rwxr-xr-x | test-suite/misc/4722.sh | 15 |
2 files changed, 17 insertions, 0 deletions
diff --git a/test-suite/misc/.gitignore b/test-suite/misc/.gitignore new file mode 100644 index 0000000000..a4083e9314 --- /dev/null +++ b/test-suite/misc/.gitignore @@ -0,0 +1,2 @@ +4722/ +4722.v diff --git a/test-suite/misc/4722.sh b/test-suite/misc/4722.sh new file mode 100755 index 0000000000..86bc50b5cd --- /dev/null +++ b/test-suite/misc/4722.sh @@ -0,0 +1,15 @@ +#!/bin/sh +set -e + +# create test files +mkdir -p misc/4722 +ln -sf toto misc/4722/tata +touch misc/4722.v + +# run test +$coqtop "-R" "misc/4722" "Foo" -top Top -load-vernac-source misc/4722.v + +# clean up test files +rm misc/4722/tata +rmdir misc/4722 +rm misc/4722.v |
