##// END OF EJS Templates
tests: AIX can't handle negative date in test-dirstate.t...
Jim Hague -
r19092:8c560ad1 stable
parent child Browse files
Show More
@@ -274,6 +274,9 b' def has_tic():'
274 274 def has_msys():
275 275 return os.getenv('MSYSTEM')
276 276
277 def has_aix():
278 return sys.platform.startswith("aix")
279
277 280 checks = {
278 281 "true": (lambda: True, "yak shaving"),
279 282 "false": (lambda: False, "nail clipper"),
@@ -314,4 +317,5 b' checks = {'
314 317 "unix-permissions": (has_unix_permissions, "unix-style permissions"),
315 318 "windows": (has_windows, "Windows"),
316 319 "msys": (has_msys, "Windows with MSYS"),
320 "aix": (has_aix, "AIX"),
317 321 }
@@ -55,8 +55,9 b" Status must not set a's entry to unset ("
55 55
56 56 Test modulo storage/comparison of absurd dates:
57 57
58 #if no-aix
58 59 $ touch -t 195001011200 a
59 60 $ hg st
60 61 $ hg debugstate
61 62 n 644 2 2018-01-19 15:14:08 a
62
63 #endif
General Comments 0
You need to be logged in to leave comments. Login now