Displaying 2 results from an estimated 2 matches for "test_symlink".
2002 Apr 02
2
rsync 2.3.2 with --copy-unsafe-links work badly
...---------------------------
Vladim?r Michl <Vladimir.Michl@hlubocky.del.cz>
Del a.s., Stroj?rensk? 38, ???r nad S?zavou
pobo?ka Olomouck? 355, Hlubo?ky-Mari?nsk? ?dol?
tel: +420 68 5353548, fax: +420 68 5352364
http://hlubocky.del.cz
-------------- next part --------------
#!/bin/sh
function test_symlink () {
if [ ! -L $1 ]; then
echo "File $1 is not symlink or not exists";
fi;
};
function test_regular () {
if [ ! -f $1 ]; then
echo "File $1 is not regular file or not exists";
fi;
};
function test_copy () {
test_symlink dest/links/file1;
test_symlink dest/links/file2...
2010 Feb 19
0
Wine release 1.1.39
...ddraw: Fix D3DTBLEND_MODULATE emulation.
ddraw: Enable GetViewport to retreive data set by SetViewport2 and vice-versa + tests.
Dan Kegel (10):
gdiplus/tests: Initialize buffer in test_GdipCreateBitmapFromHBITMAP.
iphlpapi: _res is per-thread in glibc.
ntdll: Fix leak in test_symlinks.
advapi32: Fix leak in test_symlinks.
cmd: Move all tests to test_builtins.cmd.
cmd: Turn off echo, add visual separator between testcases.
cmd: Add test to show set "FOO=bar" should not include the quotes in the variable value.
cmd: Add test to show ~dp0 sh...