pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2001-11-01
2001-11-01 19:03:51 by Martin Stjernholm <mast@lysator.liu.se>
90d08a77ffadebfbdab44de36c91ec52a2e571ff (
8
lines) (+
7
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
The _disable_threads uses a named pipe, so it must be deactivated on
NT.
Rev: src/testsuite.in:1.466
1:
-
test_true([["$Id: testsuite.in,v 1.
465
2001/11/01
18
:
35
:
22
mast Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
466
2001/11/01
19
:
03
:
51
mast Exp $"]]);
cond([[all_constants()->_verify_internals]], [[
2556:
[[ // _disable_threads test_any([[
+
#ifndef __NT__
+
// Using a named pipe here to make open() block. That doesn't exist on NT.
+
object t = class { void log (function f, string msg) {
2654:
t->log (0, "------------\n"); } rm (t->fifo);
+
+
#endif
return 1; ]], 1); ]])