mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-13 23:30:04 +02:00
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
From b56152a03c956348bd6cdd7e0a00578c07d1084a Mon Sep 17 00:00:00 2001
|
|
From: begasus <begasus@gmail.com>
|
|
Date: Sat, 16 Jun 2018 15:19:14 +0200
|
|
Subject: Haiku doesn't support hard links
|
|
|
|
|
|
diff --git a/test/suites/base.bash b/test/suites/base.bash
|
|
index 307100e..d80231e 100644
|
|
--- a/test/suites/base.bash
|
|
+++ b/test/suites/base.bash
|
|
@@ -108,7 +108,7 @@ base_tests() {
|
|
# -------------------------------------------------------------------------
|
|
TEST "Unsupported source language"
|
|
|
|
- ln -f test1.c test1.ccc
|
|
+ ln -fs test1.c test1.ccc
|
|
$CCACHE_COMPILE -c test1.ccc 2>/dev/null
|
|
expect_stat 'unsupported source language' 1
|
|
|
|
@@ -403,7 +403,7 @@ b"
|
|
# -------------------------------------------------------------------------
|
|
TEST "-x c"
|
|
|
|
- ln -f test1.c test1.ccc
|
|
+ ln -fs test1.c test1.ccc
|
|
|
|
$CCACHE_COMPILE -x c -c test1.ccc
|
|
expect_stat 'cache hit (preprocessed)' 0
|
|
@@ -416,7 +416,7 @@ b"
|
|
# -------------------------------------------------------------------------
|
|
TEST "-xc"
|
|
|
|
- ln -f test1.c test1.ccc
|
|
+ ln -fs test1.c test1.ccc
|
|
|
|
$CCACHE_COMPILE -xc -c test1.ccc
|
|
expect_stat 'cache hit (preprocessed)' 0
|
|
--
|
|
2.16.4
|
|
|