search for: testpath

Displaying 8 results from an estimated 8 matches for "testpath".

2004 May 06
2
rsync-2.6.2: NFS clients confused after an rsync
...to be able to reliably reproduce this problem, but it happens on old and new versions of rysnc. It also happens across all the platforms we use here (sun/linux/netapp). This shows the problem: [Note my home directory is NFS mounted] *************************************************** rm -f /tmp/testpath/* $HOME/testpath/* #Prime it echo some data > /tmp/testpath/testfile sleep 1 rsync -a /tmp/testpath/ $HOME/testpath/ ssh $otherbox ls -li $HOME/testpath #Break it echo additional data >> /tmp/testpath/testfile sleep 1 rsync -a -b /tmp/testpath/ $HOME/testpath/ ssh $otherbox ls -li $HOME/...
2006 Aug 17
1
unlink disables help?
...month 06 day 01 svn rev 38247 language R version.string Version 2.3.1 (2006-06-01) When I use unlink as below, the help system is disabled: > ?print > testPath <- tempdir() > print(testPath) [1] "C:\\WINDOWS\\TEMP\\Rtmpo5Wnqb" > file.exists(testPath) [1] TRUE > unlink(testPath, recursive = TRUE) > ?print Error in int.unzip(file.path(path, zipname), topic, tmpd) : 'destination' does not exist I can produce the sam...
2019 May 04
4
[PATCH] configure.ac: Add mandoc as valid formatter
Hi, On systems that have mandoc installed but are missing an nroff binary, the configure script will fall back to pre-formatted manual pages despite the fact that mandoc could be used. The proposed patch adds mandoc as a valid formatter to configure.ac. As mandoc supports the -mdoc flag, it can simply be added to the list of nroff-like binaries. Wolfgang -------------- next part --------------
2015 Apr 04
3
[LLVMdev] LLVM_ENABLE_THREADING=ON by default in Windows, is this right?
I'm not sure what LLVM_ENABLE_THREADS impacts - whether it is LLVM executables themselves or LLVM-generated code - but it seems to be on by default on the Windows CMake build (I'm building LLVM+Clang at trunk head using CMake/Visual Studio 2013 Win64). But 3 unit tests in IR, which are compiled only if define LLVM_ENABLE_THREADS is set, fail if LLVM_ENABLE_THEADS=ON:
2014 Dec 30
2
Odd Samba/btrfs AD member server problem
openSUSE 13.2 machine with btrfs for / Running samba-4.1.14-3.3.x86_64. Samba is configured to have the server act as a member server in a Windows Activedirectory domain. wbinfo -u and getent passwd work fine. getent passwd shows local and domain users. However, setfacl -n -R -m u:userX:rwx /testpath fails if userX is a domain user, but succeeds if userX is a local user. Using different specifications for userX ('domain\userX') still fail. Same testing, with almost identical smb.conf and other settings, works just fine on a opensuse 13.1 machine with ext4 running samba-4.1.14-3.2....
2014 Dec 30
1
Odd Samba/btrfs AD member server problem - SOLVED
...ba-4.1.14-3.3.x86_64. >> Samba is configured to have the server act as a member server in a >> Windows Activedirectory domain. >> wbinfo -u and getent passwd work fine. getent passwd shows local and >> domain users. >> >> However, setfacl -n -R -m u:userX:rwx /testpath fails if userX is a >> domain user, but succeeds if userX is a local user. Using different >> specifications for userX ('domain\userX') still fail. >> >> Same testing, with almost identical smb.conf and other settings, >> works just fine on a opensuse 13.1...
2009 Feb 25
3
[LLVMdev] [PATCH] Parallelized make check
...untest' is in your PATH, then reconfigure LLVM." endif ifdef TESTONE -CLEANED_TESTONE := $(patsubst %/,%,$(TESTONE)) +CLEANED_TESTONE := $(patsubst %/,%,$(TESTONE:$(CURDIR)/%=%)) CLEANED_TESTONE := $(patsubst test/%,%,$(CLEANED_TESTONE)) SUBDIR := $(shell dirname $(CLEANED_TESTONE)) TESTPATH := $(LLVM_SRC_ROOT)/test/$(CLEANED_TESTONE) -check-one: site.exp $(TCLSH) - $(Verb)( echo "source $(LLVM_OBJ_ROOT)/test/site.exp" ; \ +FORCETGT := +check-one: $(SITE_EXP) $(TCLSH) + $(Verb)( echo "source $(LLVM_OBJ_ROOT)/test/$(SITE_EXP)" ; \ echo "set subdir $(SUBDIR)&...
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
...$(VERBOSE) endif +FORCETGT := FORCE + ifdef TESTSUITE CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE)) CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE)) @@ -63,6 +65,7 @@ CLEANED_TESTONE := $(patsubst test/%,%,$(CLEANED_TESTONE)) SUBDIR := $(shell dirname $(CLEANED_TESTONE)) TESTPATH := $(LLVM_SRC_ROOT)/test/$(CLEANED_TESTONE) +FORCETGT := check-one: site.exp $(TCLSH) $(Verb)( echo "source $(LLVM_OBJ_ROOT)/test/site.exp" ; \ echo "set subdir $(SUBDIR)" ; \ @@ -80,6 +83,7 @@ clean:: $(RM) -rf `find $(LLVM_OBJ_ROOT)/test -name Output -type d -print...