]> git.llucax.com Git - software/sercom-old.git/blobdiff - src/sc_test
Nueva opción para ver atributos de un objeto con el comando ls de sc_dbq.
[software/sercom-old.git] / src / sc_test
index f9518f1b080677f913fb2bc260aac154acc04e9e..fad2a063f2a5ac4c6fde047c9e169df45be524ba 100755 (executable)
@@ -112,14 +112,15 @@ while continuar:
     log.info('Nuevo intento a probar (%s)', intento)
     # Obtengo paths
     intento_dir = os.path.join(data_dir, intento.path('intentos'))
     log.info('Nuevo intento a probar (%s)', intento)
     # Obtengo paths
     intento_dir = os.path.join(data_dir, intento.path('intentos'))
-    entrega_dir = os.path.join(data_dir, intento.path('entregas'))
+    entrega_dir = os.path.join(data_dir, 'ejercicios', str(intento.entrega.ejercicioID))
+    print entrega_dir
     # Busco makefile
     makefile = os.path.join(entrega_dir, 'Makefile')
     if not os.path.exists(makefile):
         makefile = os.path.join(data_dir, 'Makefile')
     shutil.copy(makefile, intento_dir)
     # Compilo
     # Busco makefile
     makefile = os.path.join(entrega_dir, 'Makefile')
     if not os.path.exists(makefile):
         makefile = os.path.join(data_dir, 'Makefile')
     shutil.copy(makefile, intento_dir)
     # Compilo
-    log.debug('A punto de ejecutar el comando: make -f %s', makefile)
+    log.debug('Ejecutando: make -f %s', makefile)
     intento.inicioCompila = datetime.datetime.now()
     make = subprocess.Popen(('make', '-f', makefile), stdout=subprocess.PIPE,
         stderr=subprocess.PIPE, cwd=intento_dir)
     intento.inicioCompila = datetime.datetime.now()
     make = subprocess.Popen(('make', '-f', makefile), stdout=subprocess.PIPE,
         stderr=subprocess.PIPE, cwd=intento_dir)