aboutsummaryrefslogtreecommitdiff
path: root/helper.c
blob: 06781b152f7bb1c6cd334137cbdd6553c440ace4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   helper.c                                           :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/08 03:07:07 by cacharle          #+#    #+#             */
/*   Updated: 2020/04/13 15:01:20 by charles          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "libasm_test.h"

void print_ok(void)
{
	printf("OK: %s\n", test_name);
	fflush(stdout);
}

void print_signaled_ko(void)
{
	printf("KO: [SEGFAULT]: %s\n", test_name);
	fflush(stdout);
}