Add thread exercises to verify entrypoint

This commit is contained in:
Hirokazu Hata 2019-02-17 14:03:52 +09:00
parent 02ceb0ba8c
commit 5cd5be8847
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ pub fn verify() -> Result<(), ()> {
test("exercises/error_handling/errorsn.rs")?;
compile_only("exercises/error_handling/option1.rs")?;
test("exercises/error_handling/result1.rs")?;
compile_only("exercises/threads/threads1.rs")?;
Ok(())
}