2003-05-29 Nick Drochak <ndrochak@gol.com>
authorNick Drochak <nickd@mono-cvs.ximian.com>
Tue, 30 Dec 2003 10:42:48 +0000 (10:42 -0000)
committerNick Drochak <nickd@mono-cvs.ximian.com>
Tue, 30 Dec 2003 10:42:48 +0000 (10:42 -0000)
* System_test.dll.config: Nunit loads configs with the same name as the
test assembly. This is for the Swithes test.

svn path=/trunk/mcs/; revision=21550

mcs/class/System/ChangeLog
mcs/class/System/System_test.dll.config [new file with mode: 0644]

index 132772eefc7d30f01345587e94e525f35305ab28..4955cc80494cb795a55a6507f036867edfafdedd 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-29  Nick Drochak <ndrochak@gol.com>
+
+       * System_test.dll.config: Nunit loads configs with the same name as the
+       test assembly. This is for the Swithes test.
+
 2003-12-08  Atsushi Enomoto  <atsushi@ximian.com>
 
        * System_test.dll.sources : Added UriTest2.cs
diff --git a/mcs/class/System/System_test.dll.config b/mcs/class/System/System_test.dll.config
new file mode 100644 (file)
index 0000000..a7a93ea
--- /dev/null
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+  <system.diagnostics>
+    <switches>
+      <!-- Boolean switches: any non-zero value is true -->
+      <add name="bool-true" value="1"/>
+      <add name="bool-true-2" value="4"/>
+      <add name="bool-true-3" value="-2"/>
+      <add name="bool-false" value="0"/>
+      <add name="bool-default" value="0"/>
+
+      <!-- trace switches: -->
+      <add name="trace-off" value="0"/>
+      <add name="trace-error" value="1"/>
+      <add name="trace-warning" value="2"/>
+      <add name="trace-info" value="3"/>
+      <add name="trace-verbose" value="4"/>
+
+      <add name="no-value" value="0"/>
+
+      <add name="string-value" value="0"/>
+
+      <!-- this generates a warning on .NET -->
+      <add name="trace-negative" value="-1"/>
+    </switches>
+  </system.diagnostics>
+</configuration>
+