Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Adjustments to logging in the design-time components installer. Update Eagle test suite infrastructure yet again. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8d04295591234c1a5ae99f9eba60aa78 |
User & Date: | mistachkin 2013-11-28 11:13:18.226 |
Context
2013-11-28
| ||
21:31 | Use the built-in StringComparer.OrdinalIgnoreCase class instead of the custom ColumnNameComparer class. Update several tests to account for .NET Framework and SQLite core library changes. check-in: 8d1ca7dd3b user: mistachkin tags: trunk | |
11:13 | Adjustments to logging in the design-time components installer. Update Eagle test suite infrastructure yet again. check-in: 8d04295591 user: mistachkin tags: trunk | |
02:08 | Pickup fix for the Eagle test constraints package from upstream. check-in: aea966e3aa user: mistachkin tags: trunk | |
Changes
Changes to Externals/Eagle/lib/Test1.0/constraints.eagle.
︙ | ︙ | |||
2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 | # tputs $channel [appendArgs "yes (" $visualStudioVersions ", \"" \ $::test_visual_studio "\")\n"] } else { tputs $channel no\n } } proc checkForManagedDebugger { channel } { tputs $channel "---- checking for managed debugger... " # # NOTE: Is the managed debugger attached? # | > > > > > > > > > > > > > > > > > > > > | 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 | # tputs $channel [appendArgs "yes (" $visualStudioVersions ", \"" \ $::test_visual_studio "\")\n"] } else { tputs $channel no\n } } proc checkForNativeDebugger { channel } { tputs $channel "---- checking for native debugger... " # # NOTE: Is the native debugger present? # if {[catch {object invoke -flags +NonPublic \ Eagle._Components.Private.NativeOps+SafeNativeMethods \ IsDebuggerPresent} present] == 0 && $present} then { # # NOTE: Yes, it appears that it is present. # addConstraint nativeDebugger tputs $channel yes\n } else { tputs $channel no\n } } proc checkForManagedDebugger { channel } { tputs $channel "---- checking for managed debugger... " # # NOTE: Is the managed debugger attached? # |
︙ | ︙ |
Changes to Externals/Eagle/lib/Test1.0/prologue.eagle.
︙ | ︙ | |||
1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 | # if {![info exists no(wix)]} then { # # NOTE: For test "object-4.10". # checkForWix $test_channel } # # NOTE: Has managed debugger testing support been disabled? # if {![info exists no(managedDebugger)]} then { checkForManagedDebugger $test_channel } | > > > > > > > | 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 | # if {![info exists no(wix)]} then { # # NOTE: For test "object-4.10". # checkForWix $test_channel } # # NOTE: Has native debugger testing support been disabled? # if {![info exists no(nativeDebugger)]} then { checkForNativeDebugger $test_channel } # # NOTE: Has managed debugger testing support been disabled? # if {![info exists no(managedDebugger)]} then { checkForManagedDebugger $test_channel } |
︙ | ︙ |
Changes to tools/install/Installer.cs.
︙ | ︙ | |||
4510 4511 4512 4513 4514 4515 4516 | if (!HaveFrameworkDirectory( rootKey, frameworkName, frameworkVersion, platformName, perUser, wow64, whatIf, verbose)) { TraceOps.DebugAndTrace(TracePriority.Low, debugCallback, traceCallback, String.Format( | | > | | 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 | if (!HaveFrameworkDirectory( rootKey, frameworkName, frameworkVersion, platformName, perUser, wow64, whatIf, verbose)) { TraceOps.DebugAndTrace(TracePriority.Low, debugCallback, traceCallback, String.Format( ".NET Framework {0} directory not found, " + "skipping...", ForDisplay(frameworkVersion)), traceCategory); continue; } if (callback == null) continue; |
︙ | ︙ | |||
4707 4708 4709 4710 4711 4712 4713 | if (!HaveFrameworkRegistry( rootKey, frameworkName, frameworkVersion, platformName, perUser, wow64, whatIf, verbose)) { TraceOps.DebugAndTrace(TracePriority.Low, debugCallback, traceCallback, String.Format( | | > | | 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 | if (!HaveFrameworkRegistry( rootKey, frameworkName, frameworkVersion, platformName, perUser, wow64, whatIf, verbose)) { TraceOps.DebugAndTrace(TracePriority.Low, debugCallback, traceCallback, String.Format( ".NET Framework {0} registry not found, " + "skipping...", ForDisplay(frameworkVersion)), traceCategory); continue; } if (callback == null) continue; |
︙ | ︙ | |||
4876 4877 4878 4879 4880 4881 4882 | if (!HaveVsVersion( rootKey, vsVersion, suffix, perUser, wow64, whatIf, verbose)) { TraceOps.DebugAndTrace(TracePriority.Low, debugCallback, traceCallback, String.Format( | | | | 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 | if (!HaveVsVersion( rootKey, vsVersion, suffix, perUser, wow64, whatIf, verbose)) { TraceOps.DebugAndTrace(TracePriority.Low, debugCallback, traceCallback, String.Format( "Visual Studio {0} not found, skipping...", ForDisplay(vsVersion)), traceCategory); continue; } if (callback == null) continue; |
︙ | ︙ |