2020-04-05 22:00:48 +00:00
|
|
|
import test_fibonacci
|
2020-04-05 22:44:20 +00:00
|
|
|
import test_pstring
|
|
|
|
import test_string
|
2020-07-31 16:43:39 +00:00
|
|
|
#if ENCCONV_SUPPORTED
|
2020-04-06 11:27:39 +00:00
|
|
|
import test_encconv
|
2020-07-31 16:43:39 +00:00
|
|
|
#endif
|
2020-06-03 21:13:17 +00:00
|
|
|
#if MILLFORK_VERSION >= 000317
|
|
|
|
import test_template<ignored1, 1>
|
|
|
|
import test_template<ignored1, 1>
|
|
|
|
import test_template<ignored2, 2>
|
|
|
|
#endif
|
2020-04-05 22:00:48 +00:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
ensure_mixedcase()
|
2020-04-05 22:44:20 +00:00
|
|
|
|
2020-04-06 11:27:39 +00:00
|
|
|
// readkey()
|
2020-04-05 22:00:48 +00:00
|
|
|
test_fibonacci()
|
2020-04-05 22:44:20 +00:00
|
|
|
test_string()
|
|
|
|
test_pstring()
|
2020-07-31 16:43:39 +00:00
|
|
|
#if ENCCONV_SUPPORTED
|
2020-04-06 11:27:39 +00:00
|
|
|
test_encconv()
|
2020-07-31 16:43:39 +00:00
|
|
|
#endif
|
2020-04-05 22:44:20 +00:00
|
|
|
|
|
|
|
new_line()
|
2020-04-05 22:00:48 +00:00
|
|
|
putstrz("Total failures: "z)
|
|
|
|
putword(failure_count)
|
2020-04-06 11:27:39 +00:00
|
|
|
while true {} // don't exit
|
|
|
|
}
|