Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/solaris-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@ jobs:
./configure --with-rrsync -disable-zstd --disable-md2man --disable-xxhash --disable-lz4
make
./rsync --version
cat > testsuite/xattrs.test <<'EOF'
#!/bin/sh
. $suitedir/rsync.fns
test_skipped "skipped on Solaris pending xattrs fix"
EOF
make check
./rsync-ssl --no-motd download.samba.org::rsyncftp/ || true
- name: save artifact
Expand Down
5 changes: 4 additions & 1 deletion testsuite/xattrs.test
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ EOF
xls() {
for fn in "${@}"; do
runat "$fn" "$SHELL_PATH" <<EOF
for x in *; do echo "\$x=\`cat \$x\`"; done
for x in *; do
case "\$x" in SUNWattr_*) continue;; esac
echo "\$x=\`cat \$x\`"
done
EOF
done
}
Expand Down
Loading