diff --git a/misc/jenkins/install-more.sh b/misc/jenkins/install-more.sh index a529ad6b97..6101237d18 100755 --- a/misc/jenkins/install-more.sh +++ b/misc/jenkins/install-more.sh @@ -6,7 +6,7 @@ install_mongodb() { echo "deb https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-7.0.list apt-get update apt-get install -y mongodb-org - grep mongo /etc/hosts || echo "127.0.0.1 mongo" > /etc/hosts + grep mongo /etc/hosts || echo "127.0.0.1 mongo" >> /etc/hosts } install_neo4j() { @@ -15,8 +15,11 @@ install_neo4j() { echo 'deb https://debian.neo4j.com stable 5' | tee -a /etc/apt/sources.list.d/neo4j.list apt-get update apt-get install neo4j - grep neo4j /etc/hosts || echo "127.0.0.1 neo4j" > /etc/hosts + grep neo4j /etc/hosts || echo "127.0.0.1 neo4j" >> /etc/hosts } install_mongodb +curl -v http://mongo:27017 install_neo4j +curl -v http://neo4j:7474 +ps aux diff --git a/tests/example_objet.nit b/tests/example_objet.nit index d55dba2b14..1c0c894f73 100644 --- a/tests/example_objet.nit +++ b/tests/example_objet.nit @@ -391,3 +391,5 @@ e.add_rayon(r2) r2.quantite("Pizza") = 12 r2.quantite("Poisson pané") = 4 printn(e) + +print("FAIL!")