| 622 | // Verifies that there's no mount for slave's working directory. |
| 623 | bool mountFound = false; |
| 624 | foreach (const fs::MountInfoTable::Entry& entry, table->entries) { |
| 625 | if (entry.target == flags.work_dir) { |
| 626 | mountFound = true; |
| 627 | } |
| 628 | } |
| 629 | |
| 630 | EXPECT_FALSE(mountFound); |
| 631 |