diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:52:19 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:52:19 +0000 |
commit | 5c909fa013fc285f010a95e8d387e0ef3412da9c (patch) | |
tree | 1059d068ad281f4776ff44cd414574f99a460023 /test/safestack | |
parent | f31bcc68c72371a2bf63aead9f3373a1ff2053b6 (diff) | |
download | src-5c909fa013fc285f010a95e8d387e0ef3412da9c.tar.gz src-5c909fa013fc285f010a95e8d387e0ef3412da9c.zip |
Vendor import of compiler-rt trunk r256633:vendor/compiler-rt/compiler-rt-trunk-r256633
Notes
Notes:
svn path=/vendor/compiler-rt/dist/; revision=292925
svn path=/vendor/compiler-rt/compiler-rt-trunk-r256633/; revision=292926; tag=vendor/compiler-rt/compiler-rt-trunk-r256633
Diffstat (limited to 'test/safestack')
-rw-r--r-- | test/safestack/lit.cfg | 5 | ||||
-rw-r--r-- | test/safestack/overflow.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/test/safestack/lit.cfg b/test/safestack/lit.cfg index 13fc92fa4b2b..535c09742ca9 100644 --- a/test/safestack/lit.cfg +++ b/test/safestack/lit.cfg @@ -22,3 +22,8 @@ if config.lto_supported: # SafeStack tests are currently supported on Linux, FreeBSD and Darwin only. if config.host_os not in ['Linux', 'FreeBSD', 'Darwin']: config.unsupported = True + +# Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL +# because the test fail due some runtime issue. +if config.target_arch != 'aarch64': + config.available_features.add('stable-runtime') diff --git a/test/safestack/overflow.c b/test/safestack/overflow.c index 14e29823cd99..27436947e49c 100644 --- a/test/safestack/overflow.c +++ b/test/safestack/overflow.c @@ -7,6 +7,8 @@ // Test that buffer overflows on the unsafe stack do not affect variables on the // safe stack. +// REQUIRES: stable-runtime + __attribute__((noinline)) void fct(volatile int *buffer) { |