mirror of
				https://github.com/BurntSushi/ripgrep.git
				synced 2025-10-30 23:17:47 +02:00 
			
		
		
		
	tests: use const constructor for atomics
We did this in 05411b2b for core ripgrep, but didn't carry it over to
tests.
			
			
This commit is contained in:
		| @@ -5,12 +5,12 @@ use std::fs::{self, File}; | ||||
| use std::io::{self, Write}; | ||||
| use std::path::{Path, PathBuf}; | ||||
| use std::process::{self, Command}; | ||||
| use std::sync::atomic::{ATOMIC_USIZE_INIT, AtomicUsize, Ordering}; | ||||
| use std::sync::atomic::{AtomicUsize, Ordering}; | ||||
| use std::thread; | ||||
| use std::time::Duration; | ||||
|  | ||||
| static TEST_DIR: &'static str = "ripgrep-tests"; | ||||
| static NEXT_ID: AtomicUsize = ATOMIC_USIZE_INIT; | ||||
| static NEXT_ID: AtomicUsize = AtomicUsize::new(0); | ||||
|  | ||||
| /// Setup an empty work directory and return a command pointing to the ripgrep | ||||
| /// executable whose CWD is set to the work directory. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user