-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
30 lines (25 loc) · 854 Bytes
/
main.c
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
26
27
28
29
30
#include "testing.h"
#include <stdlib.h>
#include <stdio.h>
void pruebas_heap_alumno(void);
void pruebas_heap_catedra(void);
void pruebas_heap_volumen_catedra(size_t, bool);
/* ******************************************************************
* PROGRAMA PRINCIPAL
* *****************************************************************/
int main(int argc, char *argv[])
{
printf("~~~ PRUEBAS ALUMNO ~~~\n");
pruebas_heap_alumno();
#ifdef CORRECTOR
if (argc > 1) {
// Asumimos que nos están pidiendo pruebas de volumen.
long largo = strtol(argv[1], NULL, 10);
pruebas_heap_volumen_catedra((size_t) largo, false);
return 0;
}
printf("\n~~~ PRUEBAS CÁTEDRA ~~~\n");
pruebas_heap_catedra();
#endif
return failure_count() > 0;
}