*/
public void testMissingRaidFiles() throws Exception {
try {
System.out.println("Test unraided files with < 3 replication");
createClusters(true);
MissingParityFiles mf1 = new MissingParityFiles(conf);
ByteArrayOutputStream bout = new ByteArrayOutputStream();
PrintStream ps = new PrintStream(bout, true);
mf1.findMissingParityFiles(root, ps);
ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
BufferedReader r = new BufferedReader(new InputStreamReader(bin));
String l = null;
Set<String> missingFiles = new HashSet<String>();
while ((l = r.readLine()) != null) {