Skip to content

Commit

Permalink
make tests green again
Browse files Browse the repository at this point in the history
  • Loading branch information
Araq committed Jul 9, 2016
1 parent 58f4b4c commit d7e172a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 12 deletions.
1 change: 0 additions & 1 deletion compiler/ast.nim
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,6 @@ const
var ggDebug* {.deprecated.}: bool ## convenience switch for trying out things
var
gMainPackageId*: int
gMainPackageNotes*: TNoteKinds

proc isCallExpr*(n: PNode): bool =
result = n.kind in nkCallKinds
Expand Down
3 changes: 3 additions & 0 deletions compiler/commands.nim
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,11 @@ proc processSpecificNote*(arg: string, state: TSpecialWord, pass: TCmdLinePass,
case whichKeyword(substr(arg, i))
of wOn:
incl(gNotes, n)
incl(gMainPackageNotes, n)
incl(enableNotes, n)
of wOff:
excl(gNotes, n)
excl(gMainPackageNotes, n)
incl(disableNotes, n)
excl(ForeignPackageNotes, n)
else: localError(info, errOnOrOffExpectedButXFound, arg)
Expand Down Expand Up @@ -548,6 +550,7 @@ proc processSwitch(switch, arg: string, pass: TCmdLinePass, info: TLineInfo) =
gNotes = NotesVerbosity[gVerbosity]
incl(gNotes, enableNotes)
excl(gNotes, disableNotes)
gMainPackageNotes = gNotes
of "parallelbuild":
expectArg(switch, arg, pass, info)
gNumberOfProcessors = parseInt(arg)
Expand Down
1 change: 1 addition & 0 deletions compiler/msgs.nim
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,7 @@ var
gHintCounter*: int = 0
gWarnCounter*: int = 0
gErrorMax*: int = 1 # stop after gErrorMax errors
gMainPackageNotes*: TNoteKinds = NotesVerbosity[1]

proc unknownLineInfo*(): TLineInfo =
result.line = int16(-1)
Expand Down
1 change: 0 additions & 1 deletion compiler/scriptconfig.nim
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,3 @@ proc runNimScript*(scriptName: string; freshDefines=true) =
#initDefines()
undefSymbol("nimscript")
undefSymbol("nimconfig")
gMainPackageNotes = {}
9 changes: 0 additions & 9 deletions config/nim.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ arm.linux.gcc.linkerexe = "arm-linux-gcc"
mips.linux.gcc.exe = "mips-openwrt-linux-gcc"
mips.linux.gcc.linkerexe = "mips-openwrt-linux-gcc"

@if not nimfix:
cs:partial
@end

path="$lib/deprecated/core"
path="$lib/deprecated/pure"
path="$lib/pure/collections"
Expand Down Expand Up @@ -168,10 +164,5 @@ vcc.options.always = "/nologo"
vcc.options.speed = "/O2 /arch:SSE2"
vcc.options.size = "/O1"

# Configuration for the Digital Mars C/C++ compiler:
@if windows:
dmc.path = r"$nimrod\dist\dm\bin"
@end

# Configuration for the Tiny C Compiler:
tcc.options.always = "-w"
2 changes: 1 addition & 1 deletion tests/newconfig/tfoo.nims
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import ospaths

warning("uninit", off)
hint("processing", off)

#--verbosity:2
patchFile("stdlib", "math", "mymath")

task listDirs, "lists every subdirectory":
Expand Down

0 comments on commit d7e172a

Please sign in to comment.