1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-12 06:29:34 +00:00

Let the test suite compile on targets incompatible with encconv

This commit is contained in:
Karol Stasiak 2020-07-31 18:43:39 +02:00
parent d1c0ad6b22
commit 925cc29172

View File

@ -1,7 +1,9 @@
import test_fibonacci import test_fibonacci
import test_pstring import test_pstring
import test_string import test_string
#if ENCCONV_SUPPORTED
import test_encconv import test_encconv
#endif
#if MILLFORK_VERSION >= 000317 #if MILLFORK_VERSION >= 000317
import test_template<ignored1, 1> import test_template<ignored1, 1>
import test_template<ignored1, 1> import test_template<ignored1, 1>
@ -15,7 +17,9 @@ void main() {
test_fibonacci() test_fibonacci()
test_string() test_string()
test_pstring() test_pstring()
#if ENCCONV_SUPPORTED
test_encconv() test_encconv()
#endif
new_line() new_line()
putstrz("Total failures: "z) putstrz("Total failures: "z)