System.Data.SQLite

Check-in [17147f2c77]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:When using the test suite infrastructure wrapper tool, allow the automatic build selection to be skipped.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 17147f2c776814b789e543c25818b300b42e4ddd
User & Date: mistachkin 2013-12-02 19:30:06.872
Context
2013-12-02
19:42
Make sure the selected bundled extensions are enabled in the Windows Embedded Compact 2013 build. check-in: 5ff39010c8 user: mistachkin tags: trunk
19:30
When using the test suite infrastructure wrapper tool, allow the automatic build selection to be skipped. check-in: 17147f2c77 user: mistachkin tags: trunk
07:49
NuGet package changes to support Visual Studio 2013 and the .NET Framework 4.5.1. check-in: ed95e406bf user: mistachkin tags: trunk
Changes
Unified Diff Show Whitespace Changes Patch
Changes to Setup/test.bat.
37
38
39
40
41
42
43
44







45
46
47
48
49
50
51
IF ERRORLEVEL 1 (
  ECHO Could not change directory to "%ROOT%".
  GOTO errors
)

IF NOT DEFINED PREARGS (
  %_AECHO% No pre-arguments specified, using default...
  SET PREARGS=-interactive -noExit -initialize -runtimeOption autoSelect







)

%_VECHO% PreArgs = '%PREARGS%'

IF NOT DEFINED TESTFILE (
  %_AECHO% No test file specified, using default...
  SET TESTFILE=Tests\empty.eagle







|
>
>
>
>
>
>
>







37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
IF ERRORLEVEL 1 (
  ECHO Could not change directory to "%ROOT%".
  GOTO errors
)

IF NOT DEFINED PREARGS (
  %_AECHO% No pre-arguments specified, using default...
  SET PREARGS=-interactive -noExit -initialize

  IF DEFINED NOAUTOSELECT (
    %_AECHO% Skipping automatic build selection...
  ) ELSE (
    %_AECHO% Enabling automatic build selection...
    CALL :fn_AppendVariable PREARGS " -runtimeOption autoSelect"
  )
)

%_VECHO% PreArgs = '%PREARGS%'

IF NOT DEFINED TESTFILE (
  %_AECHO% No test file specified, using default...
  SET TESTFILE=Tests\empty.eagle
72
73
74
75
76
77
78













79
80
81
82
83
84
85

IF ERRORLEVEL 1 (
  ECHO Could not restore directory.
  GOTO errors
)

GOTO no_errors














:fn_ResetErrorLevel
  VERIFY > NUL
  GOTO :EOF

:fn_SetErrorLevel
  VERIFY MAYBE 2> NUL







>
>
>
>
>
>
>
>
>
>
>
>
>







79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105

IF ERRORLEVEL 1 (
  ECHO Could not restore directory.
  GOTO errors
)

GOTO no_errors

:fn_AppendVariable
  SET __ECHO_CMD=ECHO %%%1%%
  IF DEFINED %1 (
    FOR /F "delims=" %%V IN ('%__ECHO_CMD%') DO (
      SET %1=%%V%~2
    )
  ) ELSE (
    SET %1=%~2
  )
  SET __ECHO_CMD=
  CALL :fn_ResetErrorLevel
  GOTO :EOF

:fn_ResetErrorLevel
  VERIFY > NUL
  GOTO :EOF

:fn_SetErrorLevel
  VERIFY MAYBE 2> NUL