~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/zoltan/siMPI/pyMPI/siMPI/tests/aaa.c

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*TEST
 
2
CCFLAGS=""
 
3
OUTPUT="""siMPI running on rank 0
 
4
"""
 
5
STATUS=0
 
6
TEST*/
 
7
 
 
8
#include "mpi.h"
 
9
 
 
10
int main(int argc, char** argv) {
 
11
  int rank;
 
12
  MPI_Init(&argc,&argv);
 
13
  MPI_Comm_rank(MPI_COMM_WORLD,&rank);
 
14
  printf("siMPI running on rank %d\n",rank);
 
15
  MPI_Finalize();
 
16
  return 0;
 
17
}