aboutsummaryrefslogtreecommitdiff
path: root/vendor/supports-color/tests
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/supports-color/tests')
-rw-r--r--vendor/supports-color/tests/cached.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/vendor/supports-color/tests/cached.rs b/vendor/supports-color/tests/cached.rs
deleted file mode 100644
index 86d5dfe..0000000
--- a/vendor/supports-color/tests/cached.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-#[test]
-fn cached_multithreaded() {
- (0..12)
- .map(|_| {
- std::thread::spawn(|| {
- for _ in 0..1000 {
- supports_color::on_cached(supports_color::Stream::Stdout);
- }
- })
- })
- .for_each(|thread| thread.join().unwrap());
-}