0

这是我当前的makefile,它没有正确运行测试:

shell2: shell2.o
shell2.o: shell2.c

clean:    
        rm -f *.o 

test: shell2
        ./shell2 
        pwd 
        ./shell2
        cd ..
        ./shell2
        jobs
        ./shell2
        sleep 100 &
        jobs
        ./shell2
        exit

我的程序测试换行符以了解何时输入了命令。这是我自己手动编译程序时的输出:

$ pwd
/students/8/[redacted]/[redacted]/Shell2
$ cd ..
$ jobs
Jobs:
$ sleep 1000 &
To the background: 20203
$ jobs
Jobs:
20203
$ jobs
Jobs:
20203
$ killall sleep
sleep(17014): Operation not permitted
sleep(17305): Operation not permitted
sleep(17433): Operation not permitted
sleep(19741): Operation not permitted
sleep(19841): Operation not permitted
sleep(20041): Operation not permitted
sleep(20183): Operation not permitted
$ jobs
Jobs:
$ exit
now exiting...

这是我运行 make test 时的输出:

make test
./shell2 
$ pwd
/students/8/[redacted]/[redacted]/Shell2
./shell2
$ cd ..
./shell2
$ jobs
make: jobs: Command not found
make: *** [test] Error 127

此外,我每次都必须按 ctrl+D 才能在 make 测试期间执行新行。

我正在尝试为我的班级编写这个makefile,以便我可以提交我的作业,除了基本的./a.out [输入命令]之外,我的教授根本没有解释如何使用makefile

他从未解释过如何在程序像 shell 一样在连续循环上运行的情况下使用 makefile,等待用户按 [enter] 或换行以解析命令。

我检查了 GNU man for make 但它在“测试”部分没有解释太多。

谢谢你的帮助,我真的很感激。

test_input.txt 的输出:

./shell2 < test_input.txt
"Sending command: pwd"
/students/8/[redacted]/[redacted]/Shell2
"Sending command: cd .."
"Sending command: pwd"
/students/8/[redacted]/[redacted]
"Sending command: jobs"
$ $ $ $ $ $ $ $ Jobs:
$ 
"Sending command: sleep 1000 &"
$ $ To the background: 27199
"jobs"
$ $ Jobs:
27199
$ 
"Sending command: killall sleep"
$ $ $ $ Jobs:
"Sending command: jobs"
$ $ now exiting...
"exit"

test_input.txt:

echo "Sending command: pwd"
pwd
echo "Sending command: cd .."
cd ..
echo "Sending command: pwd"
pwd
echo "Sending command: jobs"
jobs

echo "Sending command: sleep 1000 &"
sleep 1000 &
echo "jobs"
jobs

echo "Sending command: killall sleep"
killall sleep
echo "Sending command: jobs"
jobs
echo "exit"
exit
4

1 回答 1

1

看起来您正在尝试为您的程序提供输入。您不能使用 make (直接)执行此操作,因为 make 只需使用/bin/sh -c COMMAND.

你能做的是

test: shell2
    ./shell2 < test_input.txt

将输入重定向到文件test_input.txt,该文件将包含您想要的命令。

于 2013-02-26T04:06:04.140 回答