From 0609f0c982fa1837f2719fccba90db8f9c5a926b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Thu, 15 Nov 2018 14:18:38 +0100 Subject: [PATCH] [solver] Test: delete test with too long variable: symbols of more than 7 characters will not be parsed --- apps/solver/test/equation_store.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/solver/test/equation_store.cpp b/apps/solver/test/equation_store.cpp index 2ceb78da4..7e1c87336 100644 --- a/apps/solver/test/equation_store.cpp +++ b/apps/solver/test/equation_store.cpp @@ -74,11 +74,6 @@ QUIZ_CASE(equation_solve) { const char * equations0[] = {"x+y+z+a+b+c+d=0", 0}; assert_equation_system_exact_solve_to(equations0, EquationStore::Error::TooManyVariables, EquationStore::Type::LinearSystem, (const char **)variables1, nullptr, 0); - // tototototot = 0 - /* The variable name being too long, the expression 'tototototot = 0' cannot be defined. */ - const char * equations01[] = {"tototototot=0", 0}; - assert_equation_system_exact_solve_to(equations01, EquationStore::Error::EquationUndefined, EquationStore::Type::LinearSystem, (const char **)variables1, nullptr, 0); - // x^2+y = 0 const char * equations1[] = {"x^2+y=0", 0}; assert_equation_system_exact_solve_to(equations1, EquationStore::Error::NonLinearSystem, EquationStore::Type::LinearSystem, (const char **)variables1, nullptr, 0);