snowleopard / hadrian

Hadrian: a new build system for the Glasgow Haskell Compiler. Now merged into the GHC tree!
https://gitlab.haskell.org/ghc/ghc/tree/master/hadrian
MIT License
208 stars 39 forks source link

Error in validation #518

Closed chitrak7 closed 6 years ago

chitrak7 commented 6 years ago

On running "./build.sh validation", this is the error message I get.

make[1]: [test] Error 1 make: [fast] Error 2 shakeArgsWith 0.000s 0%
Function shake 0.245s 0%
Database read 0.840s 0%
With database 0.046s 0%
Running rules 1167.656s 99% ========================= Total 1168.787s 100%
Error when running Shake build system:

I think the command is working fine, but it is not returning the complete results but only the final Error values.

chitrak7 commented 6 years ago

This is the result when I run Makefile directly from /testsuite/tests.

test1.txt Clearly, the error codes are the same, but the rest of validation result is not.

izgzhen commented 6 years ago

./build.sh validation

Do you mean ./build.sh validate?

I think the command is working fine, but it is not returning the complete results but only the final Error values.

The complete results in test1.txt is in verbose output. You can run it with -VV.

chitrak7 commented 6 years ago

Yeah, that does it. Thanks @izgzhen.