Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Drochak <nickd@mono-cvs.ximian.com>2003-12-30 13:42:48 +0300
committerNick Drochak <nickd@mono-cvs.ximian.com>2003-12-30 13:42:48 +0300
commit4d6888736dae4bb56f8752b4915195b0edd29aa2 (patch)
treeb512ac7992a999833d5d80875b4002156131d6b9 /mcs/class/System/System_test.dll.config
parent1e9c997a3d2ca85bc1491416bba6d117ee39a369 (diff)
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. svn path=/trunk/mcs/; revision=21550
Diffstat (limited to 'mcs/class/System/System_test.dll.config')
-rw-r--r--mcs/class/System/System_test.dll.config28
1 files changed, 28 insertions, 0 deletions
diff --git a/mcs/class/System/System_test.dll.config b/mcs/class/System/System_test.dll.config
new file mode 100644
index 00000000000..a7a93ea47a9
--- /dev/null
+++ b/mcs/class/System/System_test.dll.config
@@ -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>
+