aicis/fresco

demos-common test failing

abspoel opened this issue · 2 comments

Freshly cloned the repository, and ran mvn install. I'm getting (among others) the following error on demos-common:

Error while parsing arguments / instantiating protocol suite: Could not parse '1:localhost:8080:bla:toomuch' as [id]:[host]:[port]

Logs here: demos-common.log
surefire.log

I compared it to the CI tests, but it seems the demos-common test is skipped there?

I was just looking into this. But unfortunately I could not reproduce the error. Can you please give us the exact steps that gave this error?

On my machine running

git clone https://github.com/aicis/fresco.git
cd fresco
mvn clean install

Ran without problems.

Yes, just exactly those steps (mvn install rather than mvn clean install).

I've remedied the issue. I think the problem was that I was running it from an NFS folder. The main error was probably:

java.nio.file.DirectoryNotEmptyException: spdz

I'm guessing the program tried to empty/delete the directory and check for success immediately after, and the file system was too slow for this. Running it from a local disk fixed the issue.