summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2021-03-08 17:12:19 +0000
committerflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2021-03-08 17:12:19 +0000
commitee3ed29064311809f8c6b802d3ba7316ef994b62 (patch)
tree3bcf4c2d89e91205c89efa9abf7ec5974d5973b7
parent036100a0e84114b1d4a8d2378d1776bdccd8ab3e (diff)
downloadfpc-ee3ed29064311809f8c6b802d3ba7316ef994b62.tar.gz
* fix test for RiscV
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@48914 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--tests/webtbs/tw2242.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/webtbs/tw2242.pp b/tests/webtbs/tw2242.pp
index e99f415321..7ea094d6f6 100644
--- a/tests/webtbs/tw2242.pp
+++ b/tests/webtbs/tw2242.pp
@@ -8124,6 +8124,7 @@ s += chr(68);
s += chr(69);
s += chr(70);
s += chr(71);
+{$if not defined(cpuarm) and not defined(cpusparc) and not defined(cpuaarch64) and not defined(cpuriscv)}
s += chr(72);
s += chr(73);
s += chr(74);
@@ -8193,7 +8194,6 @@ s += chr(85);
s += chr(86);
s += chr(87);
s += chr(88);
-{$if not defined(cpuarm) and not defined(cpusparc) and not defined(cpuaarch64)}
s += chr(89);
s += chr(90);
s += chr(65);
@@ -13077,7 +13077,7 @@ s += chr(80);
s += chr(81);
s += chr(82);
s += chr(83);
-{$endif cpuarm or cpusparc}
+{$endif not defined(cpuarm) and not defined(cpusparc) and not defined(cpuaarch64) and not defined(cpuriscv)}
{$endif not fpc_pic}
writeln(s)
END.