summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorBrett Viren <brett.viren@gmail.com>2016-05-14 09:11:41 -0400
committerBrett Viren <brett.viren@gmail.com>2016-05-14 09:11:41 -0400
commit8078845273021dae01e3fdde2a5e3b10aea2f845 (patch)
tree34eac73d564253d765277114a488cef93b3e27f6 /share
parent8ddc1f89778335dda3d1dd213e75bc3a92d99712 (diff)
downloadspack-8078845273021dae01e3fdde2a5e3b10aea2f845.tar.gz
spack-8078845273021dae01e3fdde2a5e3b10aea2f845.tar.bz2
spack-8078845273021dae01e3fdde2a5e3b10aea2f845.tar.xz
spack-8078845273021dae01e3fdde2a5e3b10aea2f845.zip
Remove problematic tests, deal with this issue outside of PR #869.
Diffstat (limited to 'share')
-rwxr-xr-xshare/spack/examples/test_view.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/share/spack/examples/test_view.sh b/share/spack/examples/test_view.sh
deleted file mode 100755
index b3e7102192..0000000000
--- a/share/spack/examples/test_view.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-
-# This will install a few bogus/test packages in order to test the
-# `spack view` command. It assumes you have "spack" in your path.
-
-# It makes sub-directories in your CWD and installs and uninstalls
-# Spack packages named test-*.
-
-set -x
-set -e
-
-view="spack -m view -v"
-for variant in +nom ~nom+var +nom+var
-do
- spack -m uninstall -f -a -y test-d
- spack -m install test-d$variant
- testdir=test_view
- rm -rf $testdir
- echo "hardlink may fail if Spack install area and CWD are not same FS"
- for action in symlink hardlink
- do
- $view --dependencies=no $action $testdir test-d
- $view -e test-a -e test-b $action $testdir test-d
- $view $action $testdir test-d
- $view status $testdir test-d
- $view -d false remove $testdir test-a
- $view remove $testdir test-d
- rmdir $testdir # should not fail
- done
-done
-echo "Warnings about skipping existing in the above are okay"