diff options
author | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
commit | a990de90fe41456a23e58bd087d2f107d321f3a1 (patch) | |
tree | 15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/supports-color/tests | |
parent | 3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff) | |
download | fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip |
Deleted vendor folder
Diffstat (limited to 'vendor/supports-color/tests')
-rw-r--r-- | vendor/supports-color/tests/cached.rs | 12 |
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()); -} |