~ubuntu-branches/debian/stretch/openbabel/stretch

« back to all changes in this revision

Viewing changes to test/aromatest.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Leidert (dale)
  • Date: 2009-07-17 00:18:06 UTC
  • mfrom: (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090717001806-sy3mzs3e1d1adbs9
Tags: 2.2.2-2
* debian/control (Uploaders): Removed LI Daobing. Thanks for your work!
  (Standards-Version): Bumped to 3.8.2.
  (Vcs-Svn): Fixed vcs-field-uses-not-recommended-uri-format.
* debian/patches/537102_fix_tr1_memory_detection.patch: Added.
  - configure.in, configure, src/config.h.in: Fix detection of tr1/memory to
    prevent building the package with boost (closes: #537102).

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
                   << " in molecule " << molCount << " "
101
101
                   << mol.GetTitle() << "\n";
102
102
            }
103
 
        }
104
 
 
105
 
      FOR_BONDS_OF_MOL(bond, mol)
106
 
        {
107
 
          if (bond->IsInRing() && !bond->IsAromatic())
108
 
            {
109
 
              cout << "not ok " << ++testCount << " # bond isn't aromatic!\n";
110
 
              cout << "# begin atom " << bond->GetBeginAtomIdx()
111
 
                   << " end atom " << bond->GetEndAtomIdx()
112
 
                   << " bond order " << bond->GetBO();
113
 
              cout << " in molecule " << molCount << " "
114
 
                   << mol.GetTitle() << "\n";
115
 
            }
116
 
          else if (bond->IsInRing() && bond->IsAromatic())
117
 
            {
118
 
              cout << "ok " << ++testCount << "\n";
119
 
            }
120
 
        }
121
 
        
 
103
        }       
122
104
    } // while reading molecules
123
105
    
124
106
  // output the number of tests run