Skip to content

Commit

Permalink
miscellaneous bug fixes (#13291)
Browse files Browse the repository at this point in the history
* fix for emscripten etc

* add testcase for #13290

* replace deprecated isNilOrWhitespace
  • Loading branch information
timotheecour authored Jan 30, 2020
1 parent 81a4379 commit bf22b44
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/pure/includes/osenv.nim
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ when defined(windows) and not defined(nimscript):

else:
const
useNSGetEnviron = (defined(macosx) and not defined(ios)) or defined(nimscript)
useNSGetEnviron = (defined(macosx) and not defined(ios) and not defined(emscripten)) or defined(nimscript)

when useNSGetEnviron:
# From the manual:
Expand Down
2 changes: 1 addition & 1 deletion lib/system/timers.nim
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ when defined(windows):

result = Nanos(float64(a.int64 - b.int64) * performanceCounterRate)

elif defined(macosx):
elif defined(macosx) and not defined(emscripten):
type
MachTimebaseInfoData {.pure, final,
importc: "mach_timebase_info_data_t",
Expand Down
2 changes: 1 addition & 1 deletion testament/htmlgen.nim
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ proc generateTestResultPanelPartial(outfile: File, testResultRow: JsonNode) =
trId, name, target, category, action, resultDescription,
timestamp, result, resultSign, panelCtxClass, textCtxClass, bgCtxClass
)
if expected.isNilOrWhitespace() and gotten.isNilOrWhitespace():
if expected.isEmptyOrWhitespace() and gotten.isEmptyOrWhitespace():
outfile.generateHtmlTestresultOutputNone()
else:
outfile.generateHtmlTestresultOutputDetails(
Expand Down
9 changes: 9 additions & 0 deletions tests/system/tsystem_misc.nim
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,12 @@ proc testMinMax(a,b: float32) =

testMinMax(0.0, NaN)
testMinMax(NaN, 0.0)


block:
type Foo = enum
k1, k2
var
a = {k1}
b = {k1,k2}
doAssert a < b

0 comments on commit bf22b44

Please sign in to comment.