fio: fix aio trim completion latencies
[fio.git] / exp / test-expression-parser.c
index a9794dcb50f759948bd44bee2f5c70b898f30ab1..e22f24dc878d14f03482d7370da7568fb302d259 100644 (file)
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
  */
 
 #include <stdio.h>
 #include <string.h>
 
  *
  */
 
 #include <stdio.h>
 #include <string.h>
 
-#include "y.tab.h"
+#include "../y.tab.h"
+
+extern int evaluate_arithmetic_expression(const char *buffer, long long *ival,
+                                         double *dval, double implied_units, int is_time);
  
 int main(int argc, char *argv[])
 {
  
 int main(int argc, char *argv[])
 {
-       int rc, has_error,  bye = 0;
+       int rc, bye = 0;
        long long result;
        double dresult;
        char buffer[100];
        long long result;
        double dresult;
        char buffer[100];
@@ -37,10 +40,11 @@ int main(int argc, char *argv[])
                rc = strlen(buffer);
                if (rc > 0 && buffer[rc - 1] == '\n')
                        buffer[rc - 1] = '\0';
                rc = strlen(buffer);
                if (rc > 0 && buffer[rc - 1] == '\n')
                        buffer[rc - 1] = '\0';
-               rc = evaluate_arithmetic_expression(buffer, &result, &dresult);
+               rc = evaluate_arithmetic_expression(buffer, &result, &dresult, 1.0, 0);
                if (!rc) {
                        printf("%lld (%20.20lf)\n", result, dresult);
                } else {
                if (!rc) {
                        printf("%lld (%20.20lf)\n", result, dresult);
                } else {
+                       fprintf(stderr, "Syntax error\n");
                        result = 0;
                        dresult = 0;
                }
                        result = 0;
                        dresult = 0;
                }