mirror of
https://github.com/ceph/ceph
synced 2024-12-23 20:03:56 +00:00
Ceph is a distributed object, block, and file storage platform
464e5e3c80
bus error, bad file handle errors... maybe an issue with cifs.ko?
2013-05-10T19:58:02.736 INFO:teuthology.task.workunit.client.1.out: CC kernel/res_counter.o
2013-05-10T19:58:09.735 INFO:teuthology.task.workunit.client.1.err:Bus error (core dumped)
2013-05-10T19:58:09.735 INFO:teuthology.task.workunit.client.1.err:make[1]: *** [kernel/cpuset.o] Error 135
2013-05-10T19:58:09.735 INFO:teuthology.task.workunit.client.1.err:make[1]: *** Waiting for unfinished jobs....
2013-05-10T19:58:09.757 INFO:teuthology.task.workunit.client.1.out: AS arch/x86/kernel/head_64.o
2013-05-10T19:58:10.264 INFO:teuthology.task.workunit.client.1.out: CC arch/x86/kernel/head64.o
2013-05-10T19:58:25.877 INFO:teuthology.task.workunit.client.1.out: CC arch/x86/kernel/head.o
2013-05-10T19:58:30.151 INFO:teuthology.task.workunit.client.1.out: CC arch/x86/kernel/init_task.o
2013-05-10T19:58:39.540 INFO:teuthology.task.workunit.client.1.out: LDS arch/x86/kernel/vmlinux.lds
2013-05-10T19:58:42.173 INFO:teuthology.task.workunit.client.1.out: CC [M] arch/x86/kernel/test_nx.o
2013-05-10T19:58:56.420 INFO:teuthology.task.workunit.client.1.out: LD arch/x86/kernel/microcode.o
2013-05-10T19:58:57.894 INFO:teuthology.task.workunit.client.1.out: LD arch/x86/kernel/built-in.o
2013-05-10T19:59:33.464 INFO:teuthology.task.workunit.client.1.err:make: *** [kernel] Error 2
2013-05-10T19:59:39.307 INFO:teuthology.task.workunit.client.1.out: LD arch/x86/built-in.o
2013-05-10T19:59:40.009 INFO:teuthology.task.workunit:Stopping kernel_untar_build.sh on client.1...
or
2013-05-10T18:34:47.574 INFO:teuthology.task.workunit.client.1.out:scripts/kconfig/conf --silentoldconfig Kconfig
2013-05-10T18:36:17.511 INFO:teuthology.task.workunit.client.1.out: CHK include/linux/version.h
2013-05-10T18:36:17.665 INFO:teuthology.task.workunit.client.1.out: UPD include/linux/version.h
2013-05-10T18:36:37.965 INFO:teuthology.task.workunit.client.1.err:make[2]: *** include/config/tristate.conf: Bad file descriptor. Stop.
or
2013-05-10T18:21:00.731 INFO:teuthology.task.workunit.client.1.out: HOSTCC scripts/pnmtologo
2013-05-10T18:21:00.879 INFO:teuthology.task.workunit.client.1.out: HOSTCC scripts/conmakehash
2013-05-10T18:21:03.034 INFO:teuthology.task.workunit.client.1.out: HOSTLD scripts/mod/modpost
2013-05-10T18:21:46.406 INFO:teuthology.task.workunit.client.1.err🐱 net/unix/modules.builtin: Bad file descriptor
Signed-off-by: Sage Weil <sage@inktank.com>
|
||
---|---|---|
clusters | ||
overrides | ||
suites | ||
.gitignore | ||
README |
ceph-qa-suite ------------- clusters/ - some predefined cluster layouts suites/ - sets of collections We have several collections, each a subdirectory within suites/*/. Each collection directory consists of a set facets. The basic idea is that, for each collection, the set of tests to run consists of all combinations of taking one yaml fragment from each facet. For example, given the files suite/collection/ suite/collection/foo/ suite/collection/foo/clusters/ suite/collection/foo/clusters/fixed-3.yaml suite/collection/foo/clusters/fixed-9.yaml suite/collection/foo/tasks/ suite/collection/foo/tasks/a suite/collection/foo/tasks/b suite/collection/foo/tasks/c suite/collection/bar/ suite/collection/bar/clusters/fixed-3.yaml suite/collection/bar/tasks/ suite/collection/bar/tasks/d suite/collection/bar/tasks/e teuthology-suite would run tasks a, b, and c on both fixed-3 and fixed-9 clusters. It would also run tasks d and e on the fixed-3 cluster. Note that the 'clusters' and 'tasks' terminology is actually meaningless here. All teuthology-suite does is stick the yaml fragments together (one from each facet) and run teuthology on the result (optionally combined with any additional fragments passed on the command line). In practice, we can keep common/shared task and cluster definitions in the top-level clusters/ (which are otherwise ignored), and symlink to them from the collections that want to use them. The teuthology code can be found in https://github.com/ceph/teuthology.git