Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andikleen/mce-test
Linux machine check test suite. Old unmaintained version of mce-test. The maintained version is at https://git.kernel.org/pub/scm/utils/cpu/mce/mce-test.git/ To submit patches please email them to [email protected]
https://github.com/andikleen/mce-test
Last synced: 11 days ago
JSON representation
Linux machine check test suite. Old unmaintained version of mce-test. The maintained version is at https://git.kernel.org/pub/scm/utils/cpu/mce/mce-test.git/ To submit patches please email them to [email protected]
- Host: GitHub
- URL: https://github.com/andikleen/mce-test
- Owner: andikleen
- License: gpl-2.0
- Created: 2011-10-13T20:05:57.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2022-10-27T15:44:00.000Z (about 2 years ago)
- Last Synced: 2023-03-12T07:06:53.819Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 414 KB
- Stars: 29
- Watchers: 6
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
MCE test suite
---------------The MCE test suite is a collection of tools and test scripts for
testing the Linux RAS related features, including CPU/Memory error
containment and recovery, ACPI/APEI support etc.For some more details on machine checks see http://www.mcelog.org
The goal is as follows:
1. cover most Linux kernel MCE processing code paths and features
2. cover functional test cases for all RAS related features
3. provide stress test cases for some RAS features, especially for
memory partIn the Package
--------------Here is a short description of what is included in the package
README
This documentCOPYING
GNU General Public LicenseMakefile
Top level make file for MCE test suitebin/
Some tools used by test drivers or test cases will be
installed into this directory.cases/*
Contains all test cases, which may be organized in
sub-directories, the interface of a class of test cases is a
shell script under cases/, such as:
-- cases/soft-inj/panic/cases.sh
is for test cases triggered by soft-inject and may cause system
panic during testing.
-- cases/apei-inj/ucr/cases.sh
is for test cases triggered by apei-inject.doc/*
Documentation for MCE test suites include howto and
descriptions of every test case.lib/*
Contains some shell scripts, in which some common shell
functions and variable definitions are defined to be used by
multiple test drivers or test cases.tools/*
Some tools used by MCE test suites.work/
During test, some temporary file will be put in work directory.groups/
Where all scenarios files such as coverage/function/stress are placedresults/
When test is done, the test log will be placed in this directory.
Some test results such as coverage test result will be
placed in sub-directory under results directory.summary
When test is done, a summary file in *date* format is placed here.Test Instruction
----------------Please refer to corresponding section in doc/howto.txt.
Very quick way to test this:
1. be root
2. make sure you have a kernel with CONFIG_X86_MCE_INJECT
and CONFIG_HWPOISON_INJECT and soft-offlining support
3. run "mcemenu"Futher Information
------------------For futher information about MCE test suite, please refer to documents
in doc sub-directory.doc/howto.txt: a more detailed HOWTO document. This doc is a little
bit out of date.doc/stress-howto.txt: Detailed HOWTO document for MCE stress test suite
doc/cases/*.txt: Description of every test case, including test
objective, code patch tested, reference and
expected results