mirror of
https://github.com/status-im/nim-chronos.git
synced 2025-02-03 06:54:10 +00:00
0277b65be2
* Initial commit. * Some fixes. * More fixes. * Add first test. * Further fixes for MacOS/BSD. * Fixes for Linux. * Add proper tests. * Lower number of tests. * Add threadsync tests to test suite. * There is no need to run tests when threads are off. * Address review comments. Fix the issue with multiple signals. Add tests. * Switch to use socketpair() instead of pipes. Fix semaphoring issue on MacOS/BSD. Add tests. * Add single threaded fire/wait tests.
15 lines
605 B
Nim
15 lines
605 B
Nim
# Chronos Test Suite
|
|
# (c) Copyright 2018-Present
|
|
# Status Research & Development GmbH
|
|
#
|
|
# Licensed under either of
|
|
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
# MIT license (LICENSE-MIT)
|
|
import testmacro, testsync, testsoon, testtime, testfut, testsignal,
|
|
testaddress, testdatagram, teststream, testserver, testbugs, testnet,
|
|
testasyncstream, testhttpserver, testshttpserver, testhttpclient,
|
|
testproc, testratelimit, testfutures, testthreadsync
|
|
|
|
# Must be imported last to check for Pending futures
|
|
import testutils
|