r224145 - Allow module deps to be printed in an arbitrary order
Reid Kleckner
reid at kleckner.net
Fri Dec 12 11:13:05 PST 2014
Author: rnk
Date: Fri Dec 12 13:13:04 2014
New Revision: 224145
URL: http://llvm.org/viewvc/llvm-project?rev=224145&view=rev
Log:
Allow module deps to be printed in an arbitrary order
The order is different between Windows and Unix for reasons unknown, but
the compiler output appears to still be determinstic.
Modified:
cfe/trunk/test/Modules/dependency-dump.m
Modified: cfe/trunk/test/Modules/dependency-dump.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/dependency-dump.m?rev=224145&r1=224144&r2=224145&view=diff
==============================================================================
--- cfe/trunk/test/Modules/dependency-dump.m (original)
+++ cfe/trunk/test/Modules/dependency-dump.m Fri Dec 12 13:13:04 2014
@@ -6,10 +6,10 @@
// expected-no-diagnostics
// RUN: FileCheck %s -check-prefix=VFS -input-file %t/vfs/vfs.yaml
-// VFS: 'name': "SubFramework.h"
-// VFS: 'name': "Treasure.h"
-// VFS: 'name': "Module.h"
-// VFS: 'name': "Sub.h"
-// VFS: 'name': "Sub2.h"
+// VFS-DAG: 'name': "SubFramework.h"
+// VFS-DAG: 'name': "Treasure.h"
+// VFS-DAG: 'name': "Module.h"
+// VFS-DAG: 'name': "Sub.h"
+// VFS-DAG: 'name': "Sub2.h"
@import Module;
More information about the cfe-commits
mailing list