yaberauneya | ef77253 | 2009-10-09 17:55:43 +0000 | [diff] [blame] | 1 | The following items need fixing with the new Makefile infrastructure: |
| 2 | |
yaberauneya | ef77253 | 2009-10-09 17:55:43 +0000 | [diff] [blame] | 3 | testcases/Makefile: |
| 4 | 1. mce-test doesn't fit cleanly in the build, yet. |
| 5 | 2. pounder21 is just broken (wasn't traversed before). |
| 6 | 3. Not sure why realtime should still be disabled for build; the aggregated |
| 7 | list was the original list of disabled items for UCLINUX != 1. |
| 8 | |
yaberauneya | 42cc0d9 | 2009-10-12 03:00:48 +0000 | [diff] [blame] | 9 | testcases/ballista: |
| 10 | 1. a) Not integrated with the Make infrastructure (and thus the output isn't |
| 11 | guaranteed to function with cross-compilation based envs). |
| 12 | b) Is a mess (there's a lot of shoddy Make and perl code that I'm cleaning |
| 13 | up right now). |
| 14 | c) Uses cshell for some weird arse reason, instead of using Bourne shell |
| 15 | compat scripts. |
| 16 | |
yaberauneya | ef77253 | 2009-10-09 17:55:43 +0000 | [diff] [blame] | 17 | testcases/commands/ade/Makefile: |
| 18 | 1. .../objdump's Makefile needs fixing. Basically some of the obj files used |
| 19 | as stimuli are .o files, which a) is a bad idea, and b) are intermediary's |
| 20 | for some apps. Either the tests or the Makefiles need to be fixed, and |
| 21 | this is a call that needs to be made by someone else including myself. |
| 22 | |
yaberauneya | 02b7b33 | 2009-10-14 18:34:03 +0000 | [diff] [blame^] | 23 | testcases/commands/unzip/Makefile: |
| 24 | |
| 25 | 1. This test requires a test zip file in order to function and it isn't |
| 26 | generated at build time anymore: |
| 27 | |
| 28 | <<<test_start>>> |
| 29 | tag=unzip01 stime=1255544779 |
| 30 | cmdline="unzip_tests.sh $LTPROOT/testcases/commands/unzip/tst_unzip_file.zip" |
| 31 | contacts="" |
| 32 | analysis=exit |
| 33 | <<<test_output>>> |
| 34 | stat: cannot stat `/tests/ltp/testcases/commands/unzip/tst_unzip_file.zip': No such file or directory |
| 35 | /tests/ltp/testcases/bin/31631.H31633 /tests/ltp/testcases/bin |
| 36 | /tests/ltp/testcases/bin |
| 37 | unzip01 0 TINFO : CLEAN: removing "31631.H31633" |
| 38 | <<<execution_status>>> |
| 39 | initiation_status="ok" |
| 40 | duration=1 termination_type=exited termination_id=1 corefile=no |
| 41 | cutime=2 cstime=1 |
| 42 | <<<test_end>>> |
| 43 | |
yaberauneya | 502647f | 2009-10-11 01:01:24 +0000 | [diff] [blame] | 44 | testcases/kernel/controllers/memcg/functional/Makefile: |
| 45 | 1. For whatever reason this Makefile's are calling up relative CPPFLAGS |
| 46 | (the old ../../../../include value) for -I$(include), despite the fact that |
| 47 | the Makefile infra been updated. This should be investigated and fixed, but |
| 48 | for now it's just an observation; not a blocking point. |
| 49 | |
yaberauneya | ef77253 | 2009-10-09 17:55:43 +0000 | [diff] [blame] | 50 | testcases/kernel/fs/dmapi/Makefile: |
| 51 | 1. This test requires JFS support, which most systems don't have. So a set of |
| 52 | proper autoconf tests need to be added for this as well. |
| 53 | |
| 54 | testcases/kernel/fs/doio/rwtest.sh: |
| 55 | 1. rwtest.sh isn't determining where to pick up the files from appropriately |
| 56 | (bad relative path logic somewhere... not sure where). |
| 57 | |
| 58 | testcases/kernel/sched/nptl/Makefile: |
| 59 | 1. There's a $(shell ) call in the Makefile that needs to be replaced. |
| 60 | |
| 61 | testcases/kernel/syscalls/utils/*.mk: |
| 62 | 1. There are unused variables and unneeded logic that needs to be evaluated |
| 63 | and potentially removed. |
| 64 | |
| 65 | testcases/misc/crash/crash02.c: |
| 66 | #if defined(__ia64__) |
| 67 | SYS_clone2, |
| 68 | #else |
| 69 | /* |
| 70 | * No SYS_fork(vfork) on IA-64. Instead, it uses, |
| 71 | * clone(child_stack=0, flags=CLONE_VM|CLONE_VFORK|SIGCHLD) |
| 72 | * clone2() |
| 73 | */ |
| 74 | |
| 75 | /* |
| 76 | * NOTE (garrcoop): |
| 77 | * Could not find reference to SYS_fork(vfork) on mips32 |
| 78 | * with the Montavista / Octeon toolchain. Need to develop an |
| 79 | * autoconf check for this item. |
| 80 | */ |
| 81 | #if defined(__NR_vfork) && __NR_vfork |
| 82 | SYS_vfork, |
| 83 | #endif |
| 84 | #if defined(__NR_fork) && __NR_fork |
| 85 | SYS_fork, |
| 86 | #endif |
| 87 | #endif /* __ia64__ */ |
| 88 | #if defined(__NR_clone) && __NR_clone |
| 89 | SYS_clone, |
| 90 | #endif |
| 91 | |
yaberauneya | 5cb8cd5 | 2009-10-14 18:03:01 +0000 | [diff] [blame] | 92 | testcases/network/multicast/...: |
| 93 | 1. These tests need to be fixed because they use make / install logic in the |
| 94 | tests: |
| 95 | |
| 96 | <<<test_start>>> |
| 97 | tag=mc_opts stime=1255502705 |
| 98 | cmdline="export TCsrc=$LTPROOT/testcases/network/multicast/mc_opts; mc_opts" |
| 99 | contacts="" |
| 100 | analysis=exit |
| 101 | <<<test_output>>> |
| 102 | gethostbyname*: Host name lookup failure |
| 103 | install: cannot stat `/tests/ltp/opts': No such file or directory |
| 104 | install: cannot stat `/tests/ltp/opts_e': No such file or directory |
| 105 | mc_opts: doing /tests/ltp/testcases/bin/mc_opts. |
| 106 | Running mc_opts opts_e on |
| 107 | /tests/ltp/testcases/bin/mc_opts: line 86: /tests/ltp/bin/mc_opts13780/opts: No such file or directory |
| 108 | mc_opts: doing /tests/ltp/testcases/bin/mc_opts. |
| 109 | mc_opts: doing /tests/ltp/testcases/bin/mc_opts |
| 110 | Test Failed: opts failed |
| 111 | <<<execution_status>>> |
| 112 | initiation_status="ok" |
| 113 | duration=1 termination_type=exited termination_id=1 corefile=no |
| 114 | cutime=1 cstime=6 |
| 115 | <<<test_end>>> |
| 116 | |
yaberauneya | e3e0390 | 2009-10-14 17:38:23 +0000 | [diff] [blame] | 117 | testcases/network/rpc/rpc-tirpc-full-test-suite: |
| 118 | 1. This needs to be integrated into the build with a Makefile, as it's not |
| 119 | getting copied over with the install. |
| 120 | |
yaberauneya | ef77253 | 2009-10-09 17:55:43 +0000 | [diff] [blame] | 121 | testcases/network/tcp_cmds/perf_lan/Makefile: |
| 122 | 1. There are duplicate sourcefiles because I don't feel confident as far as |
| 123 | the changes were concerned on the sourcefiles and I was running into |
| 124 | compile issues with the IPv6 code. |
| 125 | |
| 126 | testcases/network/stress/udp/...: |
| 127 | 1. Many of the scripts are installing themselves using the old-status quo |
| 128 | method of hardlinking into $(abs_top_srcdir)/testcases/bin, which means |
| 129 | that all of the scripts are being linked to the file |
| 130 | $(abs_top_srcdir)/testcases/bin . |
| 131 | |
| 132 | tools/Makefile: |
| 133 | 1. netpipe* needs fixing and reorg, because it's referencing /home/mpich, etc. |
| 134 | |
| 135 | utils/benchmark/Makefile: |
| 136 | 1. kernbench needs to be fixed because its makefile doesn't have support |
| 137 | out-of-build-tree building. |
| 138 | |
| 139 | Other items of issue are listed below (from testscripts/ltp-missing-install-files.py): |
| 140 | |
| 141 | io-output.log: Tag | App |
| 142 | io-output.log: runfstests.sh runfstests.sh |
| 143 | ipv6-output.log: Tag | App |
| 144 | ipv6-output.log: finger601 finger601 |
| 145 | ipv6-output.log: ping601 ping601 |
| 146 | ipv6-output.log: rlogin01 rlogin01 |
| 147 | ipv6-output.log: tcpdump601 tcpdump601 |
| 148 | ipv6-output.log: telnet01 telnet01 |
| 149 | ipv6_expect-output.log: Tag | App |
| 150 | ipv6_expect-output.log: rlogin01 rlogin01 |
| 151 | ipv6_noexpect-output.log: Tag | App |
| 152 | ipv6_noexpect-output.log: /scratch/ltp-install5/testcases/bin/echo01 /scratch/ltp-install5/testcases/bin/createfile |
| 153 | modules-output.log: Tag | App |
| 154 | modules-output.log: delete_module01 delete_module01 |
| 155 | modules-output.log: delete_module02 delete_module02 |
| 156 | modules-output.log: delete_module03 delete_module03 |
| 157 | multicast-output.log: Tag | App |
| 158 | multicast-output.log: /scratch/ltp-install5/testcases/bin/mc_opts /scratch/ltp-install5/bin/mc_opts9521/opts |
| 159 | selinux-output.log: Tag | App |
| 160 | selinux-output.log: selinux_capable_file.sh selinux_capable_file.sh |
| 161 | selinux-output.log: selinux_capable_net.sh selinux_capable_net.sh |
| 162 | selinux-output.log: selinux_capable_sys.sh selinux_capable_sys.sh |
| 163 | selinux-output.log: selinux_domain_trans.sh selinux_domain_trans.sh |
| 164 | selinux-output.log: selinux_entrypoint.sh selinux_entrypoint.sh |
| 165 | selinux-output.log: selinux_execshare.sh selinux_execshare.sh |
| 166 | selinux-output.log: selinux_exectrace.sh selinux_exectrace.sh |
| 167 | selinux-output.log: selinux_execute_no_trans.sh selinux_execute_no_trans.sh |
| 168 | selinux-output.log: selinux_fdreceive.sh selinux_fdreceive.sh |
| 169 | selinux-output.log: selinux_file.sh selinux_file.sh |
| 170 | selinux-output.log: selinux_inherit.sh selinux_inherit.sh |
| 171 | selinux-output.log: selinux_ioctl.sh selinux_ioctl.sh |
| 172 | selinux-output.log: selinux_link.sh selinux_link.sh |
| 173 | selinux-output.log: selinux_mkdir.sh selinux_mkdir.sh |
| 174 | selinux-output.log: selinux_msg.sh selinux_msg.sh |
| 175 | selinux-output.log: selinux_open.sh selinux_open.sh |
| 176 | selinux-output.log: selinux_ptrace.sh selinux_ptrace.sh |
| 177 | selinux-output.log: selinux_readlink.sh selinux_readlink.sh |
| 178 | selinux-output.log: selinux_relabel.sh selinux_relabel.sh |
| 179 | selinux-output.log: selinux_rename.sh selinux_rename.sh |
| 180 | selinux-output.log: selinux_rxdir.sh selinux_rxdir.sh |
| 181 | selinux-output.log: selinux_sem.sh selinux_sem.sh |
| 182 | selinux-output.log: selinux_setattr.sh selinux_setattr.sh |
| 183 | selinux-output.log: selinux_setnice.sh selinux_setnice.sh |
| 184 | selinux-output.log: selinux_shm.sh selinux_shm.sh |
| 185 | selinux-output.log: selinux_sigkill.sh selinux_sigkill.sh |
| 186 | selinux-output.log: selinux_stat.sh selinux_stat.sh |
| 187 | selinux-output.log: selinux_sysctl.sh selinux_sysctl.sh |
| 188 | selinux-output.log: selinux_task_create.sh selinux_task_create.sh |
| 189 | selinux-output.log: selinux_task_getpgid.sh selinux_task_getpgid.sh |
| 190 | selinux-output.log: selinux_task_getscheduler.sh selinux_task_getscheduler.sh |
| 191 | selinux-output.log: selinux_task_getsid.sh selinux_task_getsid.sh |
| 192 | selinux-output.log: selinux_task_setnice.sh selinux_task_setnice.sh |
| 193 | selinux-output.log: selinux_task_setpgid.sh selinux_task_setpgid.sh |
| 194 | selinux-output.log: selinux_task_setscheduler.sh selinux_task_setscheduler.sh |
| 195 | selinux-output.log: selinux_wait.sh selinux_wait.sh |
| 196 | selinux-output.log: selinux_dyntrace.sh selinux_dyntrace.sh |
| 197 | selinux-output.log: selinux_dyntrans.sh selinux_dyntrans.sh |
| 198 | selinux-output.log: selinux_bounds.sh selinux_bounds.sh |
| 199 | stress.part3-output.log: Tag | App |
| 200 | stress.part3-output.log: /scratch/ltp-install5/testcases/bin/mc_opts /scratch/ltp-install5/bin/mc_opts4243/opts |
| 201 | tcp_cmds-output.log: Tag | App |
| 202 | tcp_cmds-output.log: /scratch/ltp-install5/testcases/bin/echo01 /scratch/ltp-install5/testcases/bin/createfile |
| 203 | tcp_cmds-output.log: rlogin01 rlogin01 |
| 204 | tcp_cmds-output.log: telnet01 telnet01 |
| 205 | tcp_cmds_expect-output.log: Tag | App |
| 206 | tcp_cmds_expect-output.log: rlogin01 rlogin01 |
| 207 | tcp_cmds_expect-output.log: telnet01 telnet01 |
| 208 | tcp_cmds_noexpect-output.log: Tag | App |
| 209 | tcp_cmds_noexpect-output.log: /scratch/ltp-install5/testcases/bin/echo01 /scratch/ltp-install5/testcases/bin/createfile |
| 210 | |
yaberauneya | 42cc0d9 | 2009-10-12 03:00:48 +0000 | [diff] [blame] | 211 | testcases/kernel/security/selinux: |
| 212 | Is disabled on purpose (doesn't fit within build and probably won't until |
| 213 | autoconf tests are created to detect SELinux). |