X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a201b7ceece70d2bc461ac48c8b746a36d07243..1888c474f9f1789e9dd18eab06a578b3ca108bd5:/teshsuite/xbt/log_large_test.c diff --git a/teshsuite/xbt/log_large_test.c b/teshsuite/xbt/log_large_test.c index 9eb95a03c9..d51d8f363a 100644 --- a/teshsuite/xbt/log_large_test.c +++ b/teshsuite/xbt/log_large_test.c @@ -1,6 +1,7 @@ /* log_large_test -- log a very large string to test the dynamic variants */ -/* Copyright (c) 2007 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -37,11 +38,10 @@ int main(int argc, char *argv[]) xbt_init(&argc, argv); - INFO10("This is a very large message:\n0%s1%s2%s3%s4%s5%s6%s7%s8%s9%s", tmp, - tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp); + INFO10("This is a very large message:\n0%s1%s2%s3%s4%s5%s6%s7%s8%s9%s", + tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp); INFO1("Done (strlen>%d)", (int) (10 * strlen(tmp))); free(tmp); - xbt_exit(); return 0; }