mirror of
https://github.com/ceph/ceph
synced 2024-12-25 21:03:31 +00:00
92c19067de
Building xfstests on CentOS 8 has build errors: 2020-01-23T21:15:14.939 INFO:tasks.workunit.client.0.smithi155.stderr:/home/ubuntu/cephtest/mnt.0/client.0/tmp/xfstests/src/fssum.c:616: undefined reference to `major' 2020-01-23T21:15:14.939 INFO:tasks.workunit.client.0.smithi155.stderr:/home/ubuntu/cephtest/mnt.0/client.0/tmp/xfstests/src/fssum.c:617: undefined reference to `minor' 2020-01-23T21:15:14.940 INFO:tasks.workunit.client.0.smithi155.stderr:collect2: error: ld returned 1 exit status From: /ceph/teuthology-archive/pdonnell-2020-01-23_20:47:47-fs-wip-pdonnell-testing-20200122.210533-distro-basic-smithi/4697257/teuthology.log Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
17 lines
389 B
Bash
Executable File
17 lines
389 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
git clone git://git.ceph.com/xfstests.git
|
|
cd xfstests
|
|
git checkout 12973fc04fd10d4af086901e10ffa8e48866b735
|
|
make -j4
|
|
cd ..
|
|
cp xfstests/ltp/fsx .
|
|
|
|
OPTIONS="-z" # don't use zero range calls; not supported by cephfs
|
|
|
|
./fsx $OPTIONS 1MB -N 50000 -p 10000 -l 1048576
|
|
./fsx $OPTIONS 10MB -N 50000 -p 10000 -l 10485760
|
|
./fsx $OPTIONS 100MB -N 50000 -p 10000 -l 104857600
|