Do not use broken foreach() loop in this test.
所有检测均成功
The build was successful.

这个提交包含在:
Rafal Kupiec 2019-04-25 19:09:22 +02:00
父节点 cb455c3c73
当前提交 a7606864fa
签署人:: belliash
GPG 密钥 ID: 4E829243E0CFE6B4

查看文件

@ -94,9 +94,9 @@ class Program {
}
sort($files);
unset($file);
foreach($files as $file) {
print('Executing "' + $file + '"' + "\n");
$code = file_get_contents('tests/data/brainfuck/' + $file);
for(int $n = 0; $n < sizeof($files); $n++) {
print('Executing "' + $files[$n] + '"' + "\n");
$code = file_get_contents('tests/data/brainfuck/' + $files[$n]);
$bf = new Brainfuck($code, $input);
$bf->run();
print("\n");