Ad
  • Default User Avatar

    What is the expectation of the mentioned example in the description: ((a != b) > c != d) < e < f
    Let's assume a,b,c,d,e,f distinct numbers greater than 1. Should then (a != b) be true, (true (1) > c) be false, (false (0) != d) be true, (true (1) < e) be true ?
    Then (under the given assumptions) the expression would break down to (e < f)

    I feel like I'm failing at the random tests that use the != operator. So I'm wondering if my assumption above is correct.

  • Default User Avatar

    Thank you for your answer!
    My bad. I was not aware that a test is actually a test group. Can I delete this somehow, such that it is not listed under issues any longer?

  • Default User Avatar

    C++ 14:
    First, I had a bug such that test case 6 failed, saying expected 45001, actual -1.

    When I fixed the bug, test case 6 failed again, saying expected -1, actual 45001.

    Am I doing something wrong or is this a bug in the testcase?