Patches item #1942286, was opened at 2008-04-14 12:44
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=303382&aid=1942286&group_id=3382
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Testcases
Group: Other
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Klaus Weidner (kweidner)
Assigned to: Nobody/Anonymous (nobody)
Summary: Port rhel5_ibm_eal4_cert_suite2 for SGI RHEL5.1 CC tests
Initial Comment:
This patch contains the changes to the rhel5_ibm_eal4_cert_suite2 test
suite made for the CC evaluation of RHEL5.1 on SGI hardware.
Thank you to the IBM team for providing the test cases!
Bill O'Donnell <[EMAIL PROTECTED]>
Klaus Weidner <[EMAIL PROTECTED]>
*** Description of changes **************************************************
New features are:
- add support for the IA64 (Itanium2) platform, including testing of new system
calls (clone2) and conditionally disabling inapplicable system calls for that
platform
- add additional sanity checks to the "make verifydeps" step to catch common
configuration errors in LSPP mode before running the tests
- add DAC manual test (tests/manual/dac.test file) suitable for running in
tmpfs and other non-ext3 filesystems for additional coverage
The following enhancements were made to the test suite:
- show clearer usage message for the exportvars.sh script, make IPv6 address
assignment more flexible
- when waiting for audit records to be written to disk, always wait for the
kernel to indicate that it has cleared the backlog. This helps ensure
reliable results on slow machines or ones with inconsistent clocks (such as
testing in VMWare). (Optionally, try removing the "sleep 1" in function
ltp-full/lib/audit_utils.c:pause_for_auditd() and
ltp-full/python-lib/framework/audit_interface.py:wait_for_audit_log() for
faster test execution.)
- remove unnecessary sleep()s in the Python RPC framework to speed up test
execution
- more informative debugging output in the Python RPC framework, including
enabling coredumps in case of segmentation faults in test cases
The following bugs were fixed:
- ensure correct permissions for new audit log file in
ltp-full/lib/audit_utils.c:clear_audit_log()
- increase static string buffers in the ltp-full/lib/audit_parse_verify.c
routines to avoid overflows and corresponding segmentation faults (this is
not a security issue since root rights are already needed to execute the
tests)
- in ltp-full/lib/tst_res.c, increase maximum supported user message size to
avoid truncation of output
- in ltp-full/lib/tst_sig.c, ignore SIGWINCH signal to avoid test failure when
the window containing the shell running the tests is resized
*** Diffstat ****************************************************************
lspp/tests/LTP/Makefile
| 10
lspp/tests/LTP/ltp-full/lib/audit_parse_verify.c
| 15
lspp/tests/LTP/ltp-full/lib/audit_utils.c
| 21
lspp/tests/LTP/ltp-full/lib/tst_res.c
| 968 ++++++++++
lspp/tests/LTP/ltp-full/lib/tst_sig.c
| 289 ++
lspp/tests/LTP/ltp-full/python-lib/framework/audit_interface.py
| 27
lspp/tests/LTP/ltp-full/python-lib/framework/rexec.py
| 68
lspp/tests/LTP/ltp-full/python-lib/framework/shared_globals.py
| 6
lspp/tests/LTP/ltp-full/testcases/audit/audit_tools/ausearch_test
| 15
lspp/tests/LTP/ltp-full/testcases/audit/filters/multirule_test.c
| 2
lspp/tests/LTP/ltp-full/testcases/audit/filters/ranges1_test.c
| 4
lspp/tests/LTP/ltp-full/testcases/audit/filters/ranges2_test.c
| 5
lspp/tests/LTP/ltp-full/testcases/audit/filters/selinux_context_test.c
| 1
lspp/tests/LTP/ltp-full/testcases/audit/include.mk
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/accept_test.c
| 1
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/bind_test.c
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/chown32_test.c
| 4
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/clone2_test.c
| 237 ++
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/clone_test.c
| 11
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/connect_test.c
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/fchown32_test.c
| 4
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/fork_test.c
| 10
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/getsockopt_test.c
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/init_module_test.c
| 2
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/lchown32_test.c
| 5
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/mmap2_test.c
| 2
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/msgctl_test.c
| 10
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/msgget_test.c
| 10
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/msgrecv_test.c
| 10
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/msgsend_test.c
| 10
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/reboot_test.c
| 4
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/recvfrom_recvmsg_test.c
| 14
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/semctl_test.c
| 10
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/semget_test.c
| 10
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/semop_test.c
| 10
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/semtimedop_test.c
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/sendmsg_test.c
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/sendto_test.c
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/setfsgid32_test.c
| 3
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/setfsuid32_test.c
| 3
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/setgid32_test.c
| 3
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/setgroups32_test.c
| 4
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/setregid32_test.c
| 3
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/setresgid32_test.c
| 4
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/setresuid32_test.c
| 3
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/setreuid32_test.c
| 4
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/setuid32_test.c
| 4
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/shmat_test.c
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/shmctl_test.c
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/shmdt_test.c
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/shmget_test.c
| 6
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/stime_test.c
| 2
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/umount2_test.c
| 9
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/utime_test.c
| 9
lspp/tests/LTP/ltp-full/testcases/audit/syscalls/vfork_test.c
| 9
lspp/tests/LTP/ltp-full/testcases/audit/trustedpgms/passwd_test.c
| 4
lspp/tests/LTP/ltp-full/testcases/kernel/security/mls/tests/framework/drivers/_ipc.c
| 36
lspp/tests/LTP/ltp-full/testcases/kernel/security/mls/tests/framework/drivers/_syscalls.c
| 6
lspp/tests/LTP/ltp-full/testcases/kernel/security/mls/tests/framework/drivers/ipc.py
| 6
lspp/tests/LTP/ltp-full/testcases/network/cipso_ipsec/framework/test_drivers/ipsec_v6_sshd_test.py
| 3
lspp/tests/LTP/ltp-full/testcases/platform.mk
| 5
lspp/tests/exportvars.sh
| 50
lspp/tests/manual/dac.test
| 98 +
lspp/tests/platform.mk
| 8
lspp/tests/rules.mk
| 46
65 files changed, 1993 insertions(+), 190 deletions(-)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=303382&aid=1942286&group_id=3382
-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Ltp-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ltp-list